2020-09-06 17:56:25 +02:00
|
|
|
name: pomo
|
|
|
|
|
2020-09-17 17:21:45 +02:00
|
|
|
on: ["push", "pull_request"]
|
2020-09-06 17:56:25 +02:00
|
|
|
|
|
|
|
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 ./...
|
2021-07-29 02:06:45 +02:00
|
|
|
- name: test
|
|
|
|
run: make test
|
2020-09-06 17:56:25 +02:00
|
|
|
- name: build
|
|
|
|
run: make
|