Skip to content

Commit

Permalink
Run tests against multiple python version (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil committed Nov 23, 2022
1 parent 5af2da7 commit e5799eb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -13,11 +13,15 @@ concurrency:
jobs:
Run-Unit-tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [ 3.7, 3.8, 3.9, '3.10' ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '${{ matrix.python }}'
architecture: 'x64'
- run: pip install -r requirements.txt
- run: pytest --junit-xml=test-report/report.xml tests

0 comments on commit e5799eb

Please sign in to comment.