F! deleting old raw files #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ExifPictureRenamer | |
on: | |
push: | |
branches: | |
- main | |
env: | |
ENV: prod | |
jobs: | |
Deploy: | |
name: Run on ${{ matrix.py }} - ${{ matrix.os }} | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
# os: [ubuntu-latest] | |
os: [ ubuntu, macOS, windows ] | |
py: [ "3.8", "3.9", "3.10", "3.11" ] | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v3 | |
- name: setup python ${{ matrix.py }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.py }} | |
- name: Python Info | |
run: | | |
echo "" | |
echo "------------------------" | |
echo "Python version" | |
echo "------------------------" | |
python --version | |
echo "" | |
echo "------------------------" | |
echo "Python3 version" | |
echo "------------------------" | |
python3 --version | |
- name: install dependencies | |
run: make install_test | |
- name: install tox-gh | |
run: python -m pip install tox-gh | |
- name: run unit tests | |
run: make test_vff | |
# coverage has a problem with windows so not running it if windows OS | |
- name: run coverage | |
if: "!contains(matrix.os, 'windows')" | |
run: make coverage |