Skip to content

Commit 09217e5

Browse files
authored
MAINT: [CI] Update runner version to latest (#102)
1 parent a36d1cf commit 09217e5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/github-ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
tests:
2121
name: pytest on ${{ matrix.python-version }}
22-
runs-on: ubuntu-20.04
22+
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
2525
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
@@ -53,7 +53,7 @@ jobs:
5353

5454
codestyle:
5555
name: Check code style issues
56-
runs-on: ubuntu-20.04
56+
runs-on: ubuntu-latest
5757
steps:
5858
- name: Checkout Code
5959
uses: actions/checkout@v4

tests/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
except ImportError: # Fallback when not available (< Python 3.11):
1414
from contextlib import contextmanager
1515

16-
@contextmanager
16+
@contextmanager # type: ignore
1717
def chdir(dir_path):
1818
"""Non thread-safe context manager to change the current working directory."""
1919
cwd = Path.cwd()

0 commit comments

Comments
 (0)