mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
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.
This commit is contained in:
parent
bcc4f6bf1f
commit
2e4a03b2c4
1 changed files with 5 additions and 10 deletions
15
.github/workflows/test-coverage.yml
vendored
15
.github/workflows/test-coverage.yml
vendored
|
|
@ -15,18 +15,13 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Check out datasette
|
- name: Check out datasette
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v4
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: 3.9
|
python-version: '3.12'
|
||||||
- uses: actions/cache@v2
|
cache: 'pip'
|
||||||
name: Configure pip caching
|
cache-dependency-path: '**/setup.py'
|
||||||
with:
|
|
||||||
path: ~/.cache/pip
|
|
||||||
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pip-
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue