mirror of
https://github.com/joohoi/acme-dns.git
synced 2024-12-22 17:33:44 +07:00
34 lines
745 B
YAML
34 lines
745 B
YAML
name: Go
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
# Run every 12 hours, at the 15 minute mark. E.g.
|
|
# 2020-11-29 00:15:00 UTC, 2020-11-29 12:15:00 UTC, 2020-11-30 00:15:00 UTC
|
|
- cron: '15 */12 * * *'
|
|
jobs:
|
|
|
|
build:
|
|
name: Build and Unit Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ^1.13
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
run: go build -v ./...
|
|
|
|
- name: Test
|
|
run: go test -v -race -covermode=atomic -coverprofile=coverage.out ./...
|
|
|
|
- name: Upload Coverage
|
|
uses: shogo82148/actions-goveralls@v1
|
|
with:
|
|
path-to-profile: coverage.out
|