Skip to content

Commit 693bfa1

Browse files
committed
Add test environment
1 parent fe8d301 commit 693bfa1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 2 deletions
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/checkout@v3.3.0
1013
- name: install-dependencies
@@ -20,7 +23,7 @@ jobs:
2023
make check
2124
2225
coding-style:
23-
runs-on: ubuntu-22.04
26+
runs-on: ${{ matrix.os }}
2427
steps:
2528
- uses: actions/checkout@v3.3.0
2629
- name: coding convention

0 commit comments

Comments
 (0)