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