Skip to content

Commit

Permalink
*: switch from Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ericchiang committed May 5, 2020
1 parent 080f862 commit 2a5d1d7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 16 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: test
on:
pull_request:
branches:
- master

jobs:
build:
name: Linux
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.14
uses: actions/setup-go@v2
with:
go-version: '1.14.2'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install golint
run: go get -u golang.org/x/lint/golint
- name: Test
run: "./test"
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

0 comments on commit 2a5d1d7

Please sign in to comment.