Skip to content

Commit 06ed179

Browse files
authored
Update ci.yml
1 parent 0082bca commit 06ed179

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,17 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: [3.10, 3.11]
17+
python-version: ["3.10", "3.11"]
1818

1919
steps:
2020
- name: Checkout repository
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222

2323
- name: Set up Python
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
27+
cache: 'pip'
2728

2829
- name: Upgrade pip
2930
run: |
@@ -35,4 +36,4 @@ jobs:
3536
3637
- name: Run tests
3738
run: |
38-
pytest tests/ --cov
39+
pytest tests/ --cov

0 commit comments

Comments
 (0)