Skip to content

Commit

Permalink
Run tests on Ubuntu 24.04.
Browse files Browse the repository at this point in the history
  • Loading branch information
jendrikseipp committed Sep 22, 2024
1 parent 80939db commit e71099d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ on: [push, pull_request]
jobs:
build-deb-package:

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4

- name: build
uses: dawidd6/action-debian-package@v1.4.4
uses: dawidd6/action-debian-package@v1.6.0
with:
# Optional, relative to workspace directory
source_directory: .
# Optional, relative to workspace directory
artifacts_directory: output
# Optional, value from `debian/changelog` is used if not defined
os_distribution: jammy
os_distribution: noble
# Optional, target architecture, defaults to amd64
cpu_architecture: amd64
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
os: [macos-12, macos-13, ubuntu-20.04, ubuntu-22.04]
os: [macos-12, macos-13, ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -58,12 +58,12 @@ jobs:
HOMEBREW_NO_INSTALL_UPGRADE: on

- name: Check style
if: matrix.os == 'ubuntu-22.04'
if: matrix.os == 'ubuntu-24.04'
run: |
python3 -m tox -v -e style
- name: Run tests
if: matrix.os == 'ubuntu-22.04' # pip on macOS needs --break-system-packages
if: matrix.os == 'ubuntu-24.04' # pip on macOS needs --break-system-packages
run: |
python3 -c "import gi"
python3 -m tox -v -e py
Expand Down

0 comments on commit e71099d

Please sign in to comment.