Files
hamster-tycoon/.github/workflows/main.yml
Workflow config file is invalid. Please check your config file: yaml: line 7: did not find expected key
2019-09-18 00:47:08 +02:00

20 lines
332 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: Building
run: go build .
- name: Testing
run: go test ./...