Skip to content

Commit

Permalink
CI: Add Ubuntu 24.04 to workflow (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
blueskyson authored Jul 24, 2024
1 parent fe8d301 commit dfc93a2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ on: [push, pull_request]

jobs:
fibdrv-check:
runs-on: ubuntu-22.04
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: install-dependencies
Expand All @@ -20,7 +23,10 @@ jobs:
make check
coding-style:
runs-on: ubuntu-22.04
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: coding convention
Expand Down

0 comments on commit dfc93a2

Please sign in to comment.