Files
hamster-tycoon/.github/workflows/main.yml
2020-07-22 00:56:56 +02:00

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 ./...