Skip to content

Commit

Permalink
Merge pull request #28 from adriendelsalle/matrix-example
Browse files Browse the repository at this point in the history
Add matrix example in readme
  • Loading branch information
wolfv authored Oct 20, 2021
2 parents 413150b + 7a25d08 commit 66899ad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
pytest: ["6.1", "6.2"]
name: test
steps:
- uses: actions/checkout@v2
Expand All @@ -83,7 +86,7 @@ jobs:
environment-name: myenv
extra-specs: |
python=3.7
pytest<=6.1
pytest=${{ matrix.pytest }}
```

## IMPORTANT
Expand Down

0 comments on commit 66899ad

Please sign in to comment.