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 965c8a7 commit 88f7b31Copy full SHA for 88f7b31
.github/workflows/ci.yaml
@@ -1,4 +1,4 @@
1
-name: Unit tests
+name: CI
2
3
on:
4
push:
@@ -47,9 +47,20 @@ jobs:
47
deploy:
48
runs-on: ubuntu-18.04
49
needs: test
50
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && matrix.python-version == '3.8'
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
51
52
steps:
53
+ - uses: actions/checkout@v4
54
+
55
+ - name: Set up Python 3.8
56
+ uses: actions/setup-python@v5
57
+ with:
58
+ python-version: 3.8
59
60
+ - name: Upgrade pip and setuptools
61
+ run: |
62
+ python -m pip install --upgrade pip setuptools
63
64
- name: Install dependencies
65
run: pip install twine wheel
66
0 commit comments