Files
hamster-tycoon/.github/workflows/main.yml
2019-09-20 00:28:05 +02:00

28 lines
452 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 ./...
- name: Acceptance test
run: make bdd-test