We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents be6c561 + a6c3b48 commit 7311808Copy full SHA for 7311808
1 file changed
.github/workflows/_test.yml
@@ -77,12 +77,21 @@ jobs:
77
if: always()
78
needs: tests
79
runs-on: ubuntu-latest
80
- container: python:3-slim
81
steps:
+ - name: Add requirements file to make setup-python happy
82
+ run: touch requirements.txt
83
+
84
+ - name: Set up Python
85
+ uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984
86
+ with:
87
+ python-version: '3.x'
88
+ cache: 'pip'
89
90
- name: Install dependencies
91
run: |
92
python3 -m pip install --upgrade pip
93
python3 -m pip install --upgrade coveralls
94
95
- name: Finalize publishing on coveralls.io
96
continue-on-error: true
97
env:
0 commit comments