We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0082bca commit 06ed179Copy full SHA for 06ed179
1 file changed
.github/workflows/ci.yml
@@ -14,16 +14,17 @@ jobs:
14
15
strategy:
16
matrix:
17
- python-version: [3.10, 3.11]
+ python-version: ["3.10", "3.11"]
18
19
steps:
20
- name: Checkout repository
21
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
22
23
- name: Set up Python
24
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v5
25
with:
26
python-version: ${{ matrix.python-version }}
27
+ cache: 'pip'
28
29
- name: Upgrade pip
30
run: |
@@ -35,4 +36,4 @@ jobs:
35
36
37
- name: Run tests
38
- pytest tests/ --cov
39
+ pytest tests/ --cov
0 commit comments