birdbot/.github/workflows/validate.yaml

23 lines
410 B
YAML
Raw Normal View History

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