We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c43989 commit 21b1f3cCopy full SHA for 21b1f3c
.github/workflows/pyci.yml
@@ -12,32 +12,20 @@ jobs:
12
build:
13
runs-on: ubuntu-latest
14
15
- strategy:
16
- matrix:
17
- python-version: [3.8, 3.9]
18
-
19
steps:
20
- - uses: actions/checkout@v2
21
22
- - name: Set up Python ${{ matrix.python-version }}
23
- uses: actions/setup-python@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
24
with:
25
- python-version: ${{ matrix.python-version }}
+ python-version: '3.13'
26
27
- name: Install dependencies
28
run: |
29
- pip install poetry
+ pip install uv
30
make setup
31
32
- - name: Run selfcheck and linter
+ - name: Run tests and linter
33
34
make check
35
- make lint
36
37
- - name: Run tests
38
- run: |
39
- make test
40
41
42
deploy:
43
needs: build
0 commit comments