Skip to content

Commit 01b4fa1

Browse files
authored
Merge pull request #95 from pamelafox/copilot/fix-94
Update Ubuntu runner from ubuntu-20.04 to ubuntu-latest in GitHub workflows
2 parents 28c86b4 + 03a0ba4 commit 01b4fa1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
os: ["ubuntu-20.04"]
16+
os: ["ubuntu-latest"]
1717
python_version: ["3.10"]
1818
steps:
1919
- uses: actions/checkout@v4
@@ -27,7 +27,7 @@ jobs:
2727
python3 -m pip install --upgrade pip
2828
python3 -m pip install -r requirements-dev.txt
2929
- name: Lint with ruff
30-
run: ruff .
30+
run: ruff check .
3131
- name: Check formatting with black
3232
run: black . --check --verbose
3333
- name: Run tests

0 commit comments

Comments
 (0)