Skip to content

Commit

Permalink
Introduce github actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
yuuki committed Nov 10, 2019
1 parent b2abf84 commit 1a2c2d7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
@@ -0,0 +1,18 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.13.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v1
- name: Test
run: make test

0 comments on commit 1a2c2d7

Please sign in to comment.