- fix up workflows

This commit is contained in:
rocketlaunchr-cto
2022-05-24 12:12:35 +10:00
parent c8eeb7025d
commit cfb8074c36

28
.github/workflows/audit.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Audit
on:
push:
branches: [master]
pull_request:
branches: [master]
schedule:
- cron: '55 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...