Skip to content

Commit

Permalink
Add test environment
Browse files Browse the repository at this point in the history
  • Loading branch information
blueskyson committed Jul 24, 2024
1 parent 02f2ee7 commit 455e2be
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, ubuntu-24.04]
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
- name: install-dependencies
Expand All @@ -20,7 +23,10 @@ jobs:
make check
coding-style:
runs-on: [ubuntu-22.04, ubuntu-24.04]
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.3.0
- name: coding convention
Expand Down

0 comments on commit 455e2be

Please sign in to comment.