Skip to content

Commit dfc93a2

Browse files
authored
CI: Add Ubuntu 24.04 to workflow (#18)
1 parent fe8d301 commit dfc93a2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/main.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ on: [push, pull_request]
44

55
jobs:
66
fibdrv-check:
7-
runs-on: ubuntu-22.04
7+
strategy:
8+
matrix:
9+
os: [ubuntu-22.04, ubuntu-24.04]
10+
runs-on: ${{ matrix.os }}
811
steps:
912
- uses: actions/[email protected]
1013
- name: install-dependencies
@@ -20,7 +23,10 @@ jobs:
2023
make check
2124
2225
coding-style:
23-
runs-on: ubuntu-22.04
26+
strategy:
27+
matrix:
28+
os: [ubuntu-22.04, ubuntu-24.04]
29+
runs-on: ${{ matrix.os }}
2430
steps:
2531
- uses: actions/[email protected]
2632
- name: coding convention

0 commit comments

Comments
 (0)