Skip to content

Commit

Permalink
use github actions for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
rogpeppe committed Aug 21, 2019
1 parent c30549a commit e6ced00
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

name: Go
jobs:
test:
strategy:
matrix:
x: ["1"
v: [".12.8"]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: "${{ matrix.x }}$${{ matrix.v}}"
- name: Checkout code
uses: actions/checkout@v1
- name: Test
env:
GO111MODULE: "on"
GOPROXY: "https://proxy.golang.org"
run: go test ./...
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit e6ced00

Please sign in to comment.