Skip to content

Commit b8af5b4

Browse files
committed
Merge remote-tracking branch 'origin/main' into add-typing-info
Signed-off-by: David Black <[email protected]>
2 parents f12935a + 36e3aeb commit b8af5b4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push]
55
jobs:
66
build:
77

8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
strategy:
1010
matrix:
1111
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
@@ -19,11 +19,11 @@ jobs:
1919
- name: Install dependencies
2020
run: |
2121
python -m pip install --upgrade pip wheel setuptools
22-
pip install -q pycodestyle==2.9.1 flake8==5.0.4
22+
pip install -q ruff
2323
- name: Lint
2424
run: |
25-
pycodestyle .
26-
flake8 .
25+
ruff check .
26+
ruff format --check .
2727
- name: Test
2828
run: |
2929
pip install wheel

0 commit comments

Comments
 (0)