Skip to content

Commit

Permalink
- add testing to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aaabramov committed Nov 8, 2021
1 parent 2577f53 commit 3b69537
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml → .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
on: [ push, pull_request ]
name: Build
name: Test
jobs:
Build:
Test:
strategy:
matrix:
go-version: [ 1.17.x ]
Expand All @@ -16,5 +16,8 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

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

- name: Build
run: go build

0 comments on commit 3b69537

Please sign in to comment.