Skip to content

Commit

Permalink
ci/gha: test on different Go and Ubuntu versions
Browse files Browse the repository at this point in the history
Add test matrix to run tests on latest Go and different Ubuntu versions

Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed Oct 22, 2024
1 parent 768583e commit 2d3ce5c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ on:
jobs:

build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, ubuntu-24.04]
go-version: [1.17.x, 1.22.x, 1.23.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.17
go-version: ${{ matrix.go-version }}

- name: Kernel Modules
run: ./.github/scripts/modprobe.sh
Expand Down

0 comments on commit 2d3ce5c

Please sign in to comment.