We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0543aa4 commit fdd2109Copy full SHA for fdd2109
1 file changed
.github/workflows/release.yaml
@@ -12,9 +12,22 @@ jobs:
12
13
test-suite:
14
runs-on: ubuntu-latest
15
- steps:
16
- - uses: actions/checkout@v2
17
- - name: tests
18
- run: |
19
- make test
+ strategy:
+ matrix:
+ python-version: [3.6, 3.7, 3.8]
20
+ steps:
+ - uses: actions/checkout@v2
21
+ - name: Set up Python ${{ matrix.python-version }}
22
+ uses: actions/setup-python@v2
23
+ with:
24
+ python-version: ${{ matrix.python-version }}
25
+ - name: Install dependencies
26
+ run: |
27
+ python -m pip install --upgrade pip
28
+ # pip install flake8 pytest
29
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
30
+ if [ -f tests/requirements.txt ]; then pip install -r tests/requirements.txt; fi
31
+ - name: Test with pytest
32
33
+ pytest
0 commit comments