Files
hamster-tycoon/.github/workflows/main.yml
2019-09-18 00:51:23 +02:00

25 lines
398 B
YAML

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Go for use with actions
uses: actions/setup-go@v1.0.0
with:
go-version: '1.13' # 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 ./...