Skip to content

Apply suggestions from code review #497

Apply suggestions from code review

Apply suggestions from code review #497

Workflow file for this run

name: Python Compatibility
on: [push, pull_request, workflow_dispatch]
jobs:
test-py38:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: "3.8"
python-include: "python3.8"
tox-env: "py38"
allow_failure: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "pyproject.toml"
- run: pip install "tox==4.2.4"
- if: ${{ github.ref_name == 'main' }}
run: sed -i 's/\[tool.setuptools_scm\]/\[tool.setuptools_scm\]\nlocal_scheme = "no-local-version"/' pyproject.toml
- env:
C_INCLUDE_PATH: ${{ env.pythonLocation }}/include/${{ matrix.python-include }}
run: tox run -e ${{ matrix.tox-env }}
- uses: codecov/codecov-action@v3
with:
env_vars: PYTHON
files: coverage.xml
flags: unittests
verbose: true
- uses: actions/upload-artifact@v3
with:
name: coverage
path: coverage.xml