Skip to content

Commit 2e4a03b

Browse files
authoredJan 31, 2024··
Run coverage on Python 3.12
- #2245 I hoped this would run slightly faster than 3.9 but there doesn't appear to be a performance improvement.
1 parent bcc4f6b commit 2e4a03b

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed
 

‎.github/workflows/test-coverage.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,13 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Check out datasette
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919
- name: Set up Python
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v5
2121
with:
22-
python-version: 3.9
23-
- uses: actions/cache@v2
24-
name: Configure pip caching
25-
with:
26-
path: ~/.cache/pip
27-
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
28-
restore-keys: |
29-
${{ runner.os }}-pip-
22+
python-version: '3.12'
23+
cache: 'pip'
24+
cache-dependency-path: '**/setup.py'
3025
- name: Install Python dependencies
3126
run: |
3227
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)
Please sign in to comment.