initialize repository

This commit is contained in:
itchyny 2020-01-07 19:52:49 +09:00
commit ac88fa99fe
9 changed files with 160 additions and 0 deletions

20
.github/workflows/ci.yaml vendored Normal file
View file

@ -0,0 +1,20 @@
name: CI
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: 1.x
- name: Test
run: make test
- name: Lint
run: |
export PATH=$PATH:$(go env GOPATH)/bin # will be removed
make lint