24 lines
393 B
YAML
24 lines
393 B
YAML
name: CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Setup Go for use with actions
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '1.14' # The Go version to download (if necessary) and use.
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Building
|
|
run: go build .
|
|
|
|
- name: Testing
|
|
run: go test ./...
|