Implement Simple CI (#1)

This commit is contained in:
2022-10-26 22:22:28 -04:00
committed by GitHub
parent 9fa4eb31dc
commit 7bdff2fc63
3 changed files with 66 additions and 2 deletions

23
.github/workflows/validate.yaml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Validate
on:
push: {}
pull_request: {}
jobs:
publish:
name: Test & Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '>=1.18.0'
- name: Test
run: |
make test
- name: Build
run: |
make build