birdbot/.github/workflows/validate.yaml

23 lines
414 B
YAML
Raw Normal View History

2022-10-26 22:22:28 -04:00
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:
2022-10-27 03:56:23 +00:00
go-version: '>=1.19.0'
2022-10-26 22:22:28 -04:00
- name: Test
run: |
make test
- name: Build
run: |
make build VERSION="test"