Skip to content

Commit

Permalink
add GitHub Actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
catatsuy committed Apr 8, 2020
1 parent 4cd3764 commit a7d3bfe
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Go
on: [push]
jobs:

test:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.14.x' ]
steps:

- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: test
run: |
make check

0 comments on commit a7d3bfe

Please sign in to comment.