You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
413 B
YAML

name: pomo
on: ["push", "pull_request"]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: setup go
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go
- name: check out
uses: actions/checkout@v2
- name: dependencies
run: |
go get -v -t -d ./...
- name: test
run: make test
- name: build
run: make