1
1
Fork 0
mirror of https://github.com/mcuadros/ascode synced 2024-05-08 00:26:15 +02:00

ci: github actions test

This commit is contained in:
Máximo Cuadros 2020-03-27 18:35:20 +01:00
parent b5d48116cc
commit 84fc284d8e
No known key found for this signature in database
GPG Key ID: 17A5DFEDC735AE4B

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

@ -0,0 +1,21 @@
name: Test
on: [push, pull_request]
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 ./...