Skip to content

Commit 88f7b31

Browse files
Typo
1 parent 965c8a7 commit 88f7b31

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Unit tests
1+
name: CI
22

33
on:
44
push:
@@ -47,9 +47,20 @@ jobs:
4747
deploy:
4848
runs-on: ubuntu-18.04
4949
needs: test
50-
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && matrix.python-version == '3.8'
50+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
5151

5252
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+
5364
- name: Install dependencies
5465
run: pip install twine wheel
5566

0 commit comments

Comments
 (0)