dir2opds/.github/workflows/go.yml

26 lines
361 B
YAML
Raw Normal View History

2021-05-06 03:10:50 +00:00
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
2021-05-06 06:48:02 +00:00
go-version: 1.16
2021-05-06 03:10:50 +00:00
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...