move to github actions

Signed-off-by: Luca Bigliardi <shammash@google.com>
This commit is contained in:
Luca Bigliardi 2020-11-05 10:16:56 +01:00
parent d89858e51c
commit 91da0c3744
2 changed files with 18 additions and 24 deletions

View File

@ -1,24 +0,0 @@
version: 2
jobs:
test-1.9:
docker:
- image: circleci/golang:1.9
working_directory: /go/src/github.com/google/alertmanager-irc-relay
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...
test-1.10:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/google/alertmanager-irc-relay
steps:
- checkout
- run: go get -v -t -d ./...
- run: go test -v ./...
workflows:
version: 2
test:
jobs:
- test-1.9
- test-1.10

18
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,18 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.11.x, 1.14.x, 1.15.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...