Skip to content

Commit

Permalink
try to make test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ianic committed Oct 19, 2021
1 parent c037e04 commit 4b6d160
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.17.x
- name: Checkout code
uses: actions/checkout@v2
- name: Test
working-directory: ./workspace
run: go test ./...

0 comments on commit 4b6d160

Please sign in to comment.