Skip to content

Commit

Permalink
Setup GHA for testing
Browse files Browse the repository at this point in the history
Signed-off-by: Yutaro Hayakawa <[email protected]>
  • Loading branch information
YutaroHayakawa committed Jan 8, 2025
1 parent 997ec03 commit 43e65c0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Tests

on:
push:
branches:
- main
pull_request:

jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Check kernel module
run: lsmod

- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod

- name: Run tests
run: ./test.sh

0 comments on commit 43e65c0

Please sign in to comment.