Skip to content

Commit

Permalink
*: replace appveyor and travis with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcuadros committed Mar 9, 2020
1 parent 53f1226 commit 24ded68
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 54 deletions.
22 changes: 0 additions & 22 deletions .ci/test-building-binaries-for-supported-os.sh

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.12.x, 1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

15 changes: 0 additions & 15 deletions appveyor.yml

This file was deleted.

0 comments on commit 24ded68

Please sign in to comment.