birdbot/.github/workflows/validate.yaml
Layla Manley 696ab7201c
Major Refactor (#2)
* Major reworks

* More refactoring

* Refactor feature complete!

* Comments

* Add versioning
2022-10-28 23:08:17 -04:00

23 lines
414 B
YAML

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.19.0'
- name: Test
run: |
make test
- name: Build
run: |
make build VERSION="test"