Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use newer github runners #714

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
sanity:
name: ${{ matrix.test.name }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
TOXENV: ${{ matrix.test.tox_env }}

Expand All @@ -17,7 +17,7 @@ jobs:
matrix:
test:
- name: Lint
tox_env: linters-py310
tox_env: linters-py312

- name: Docs
tox_env: docs
Expand All @@ -28,8 +28,7 @@ jobs:

- name: Install tox
run: |
python3 -m pip install --upgrade pip
python3 -m pip install tox
sudo apt-get install -q -y tox python3-pip

- name: Create tox environment
run: tox --notest
Expand All @@ -38,7 +37,7 @@ jobs:
run: tox --skip-pkg-install

integration:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: Integration - ${{ matrix.py_version.name }}

env:
Expand Down Expand Up @@ -88,7 +87,7 @@ jobs:

unit:
name: Unit - ${{ matrix.py_version.name}}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
TOXENV: ${{ matrix.py_version.tox_env }}

Expand Down Expand Up @@ -123,8 +122,7 @@ jobs:

- name: Install tox
run: |
python3 -m pip install --upgrade pip
python3 -m pip install tox
sudo apt-get install -q -y tox python3-pip

- name: Create tox environment
run: tox --notest
Expand Down
Loading