Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e81718

Browse files
committedNov 26, 2024·
Add 3.13
1 parent 18edd50 commit 4e81718

File tree

1 file changed

+8
-15
lines changed

1 file changed

+8
-15
lines changed
 

‎.github/workflows/run-tests.yml

+8-15
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,27 @@ env:
1111
UV_SYSTEM_PYTHON: 1
1212

1313
jobs:
14-
build:
14+
test:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
1818
os: [windows-latest, ubuntu-latest, macos-latest]
19-
python-version: ["3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2020
steps:
2121
- uses: actions/checkout@v4
22-
- name: Install uv
23-
uses: astral-sh/setup-uv@v3
24-
- name: Install Python
25-
uses: actions/setup-python@v5
22+
- uses: astral-sh/setup-uv@v3
23+
- uses: actions/setup-python@v5
2624
with:
2725
python-version: ${{ matrix.python-version }}
2826
- name: Install libsndfile
2927
if: startsWith(matrix.os, 'ubuntu')
3028
run: |
3129
sudo apt-get install -y libsndfile1
3230
- name: Install dependencies
33-
run: |
34-
uv pip install ".[dev]"
31+
run: uv pip install ".[dev]"
3532
- name: Run tests
36-
run: |
37-
pytest
38-
- name: Check source code format
33+
run: pytest
34+
- name: Check style
3935
run: black --check --diff .
4036

4137
test-deb10-i386:
@@ -54,16 +50,13 @@ jobs:
5450
python3-soundfile \
5551
python3-pytest \
5652
git
57-
5853
# Note: "actions/checkout@v2" requires libstdc++6:amd64 to be
5954
# installed in the container. To keep things simple, use
6055
# "actions/checkout@v1" instead.
6156
# https://github.com/actions/checkout/issues/334
6257
- uses: actions/checkout@v1
63-
6458
- name: Run tests
65-
run: |
66-
pytest-3
59+
run: pytest-3
6760

6861
build-documentation:
6962
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)
Please sign in to comment.