Skip to content

Commit

Permalink
move to GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
KenjiTakahashi committed Oct 18, 2020
1 parent 7e1bf2b commit 5262a69
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: tests

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go: [1.8, 1.9, "1.10", 1.11, 1.12, 1.13, 1.14, 1.15]

steps:
- name: setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}

- uses: actions/checkout@v2
- name: resolve dependencies
run: go get -v -t -d ./...
- name: build
run: go build -v .
- name: test
run: go test -v .
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

0 comments on commit 5262a69

Please sign in to comment.