We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 467b1f8 commit c0ddbbfCopy full SHA for c0ddbbf
.github/workflows/tests.yml
@@ -57,6 +57,10 @@ jobs:
57
# check coverage increase/decrease
58
needs: tests
59
runs-on: ${{ matrix.os }}
60
+ strategy:
61
+ matrix:
62
+ include:
63
+ - { os: ubuntu-latest }
64
steps:
65
- name: Coveralls Finished
66
uses: AndreMiras/coveralls-python-action@develop
@@ -66,12 +70,16 @@ jobs:
70
deploy:
67
71
# builds and publishes to PyPi
68
72
73
74
75
76
+ - { python: '3.7', os: ubuntu-latest }
69
77
78
- uses: actions/checkout@v2
79
- name: Set up Python
80
uses: actions/setup-python@v2
81
with:
- python-version: '3.7'
82
+ python-version: ${{ matrix.python }}
83
- name: Install dependencies
84
run: |
85
python -m pip install --upgrade pip
0 commit comments