Skip to content

Commit

Permalink
Merge pull request #11 from nimbolus/run-tests-in-ci
Browse files Browse the repository at this point in the history
run go tests in ci
  • Loading branch information
lu1as authored Oct 12, 2022
2 parents 6c0dfc8 + aab4711 commit 86e95c0
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Run Go tests

on: [push]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...

0 comments on commit 86e95c0

Please sign in to comment.