Skip to content

Commit

Permalink
run common tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ftheirs committed Mar 8, 2024
1 parent d9f3657 commit 29ef6fc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Test
on:
workflow_dispatch:
push:
pull_request:
branches:
- main
pull_request:

jobs:
Test:
Expand All @@ -13,7 +14,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.19"
go-version: "1.21"
- name: Testing build
# We do not run go test, as it requires a device
run: go build
- name: Run common tests
run: go test -run '.' common_test.go common.go types.go

0 comments on commit 29ef6fc

Please sign in to comment.