29 lines
409 B
YAML
Raw Permalink Normal View History

2022-05-24 16:45:11 +10:00
name: GoogleDOMCheck
2022-05-24 11:51:53 +10:00
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
2022-05-24 16:45:11 +10:00
- cron: '0 0,12 * * *'
2022-05-24 11:51:53 +10:00
2022-05-24 12:10:39 +10:00
2022-05-24 11:51:53 +10:00
jobs:
2022-05-24 12:10:39 +10:00
build:
runs-on: ubuntu-latest
2022-05-24 11:51:53 +10:00
steps:
2022-05-24 12:10:39 +10:00
- uses: actions/checkout@v3
2022-05-24 11:51:53 +10:00
- name: Set up Go
2022-05-24 12:10:39 +10:00
uses: actions/setup-go@v3
2022-05-24 11:51:53 +10:00
with:
2022-05-24 12:10:39 +10:00
go-version: 1.18
2022-05-24 11:51:53 +10:00
- name: Build
run: go build -v ./...
2022-05-24 12:10:39 +10:00
- name: Test
2022-05-24 16:45:11 +10:00
run: go test -v ./...