maintenance #63
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: Checks | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.9', '3.10'] | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
check-latest: true | |
- name: Install fftw3 libs (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get install -y libfftw3-dev libfftw3-double3 | |
- name: Install fftw3 libs (macOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install --overwrite fftw | |
- name: Install dependencies | |
run: | | |
# prerequisites | |
python -m pip install --upgrade pip wheel | |
python -m pip install coverage flake8 | |
# install dependencies | |
pip install -e . | |
pip install -r tests/requirements.txt | |
# show installed packages | |
pip freeze | |
- name: Test with pytest | |
run: | | |
coverage run --source=odtbrain -m pytest tests | |
- name: Upload test artifacts | |
if: (runner.os == 'Linux' && matrix.python-version == '3.10') | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Test_artifacts | |
path: | | |
./*.zip | |
- name: Lint with flake8 | |
run: | | |
flake8 --exclude _version.py . | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |