Skip to content
This repository was archived by the owner on Jan 12, 2022. It is now read-only.

Commit 5451d82

Browse files
committed
Add Barebones github actions test
1 parent 0da8ce7 commit 5451d82

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
go: [ '1.15', '1.14' ]
11+
name: Go ${{ matrix.go }} Tests
12+
steps:
13+
- uses: actions/checkout@v2
14+
- name: Setup go
15+
uses: actions/setup-go@v2
16+
with:
17+
go-version: ${{ matrix.go }}
18+
- run: go test

.travis.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)