Skip to content

Commit

Permalink
CI: Use newer github runners (#714)
Browse files Browse the repository at this point in the history
Needed-By: #1176
  • Loading branch information
ssbarnea authored Oct 10, 2024
1 parent 342d66a commit 16a5dce
Showing 1 changed file with 6 additions and 8 deletions.
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

0 comments on commit 16a5dce

Please sign in to comment.