appvm/.github/workflows/ubuntu.yml
2019-12-29 19:31:12 +00:00

17 lines
225 B
YAML

name: Ubuntu
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Fetch dependencies
run: go get -d ./...
- name: Build
run: go build