2024-03-06 20:53:29 +01:00
|
|
|
name: Test and Build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2024-03-06 23:22:03 +01:00
|
|
|
- main
|
2024-03-06 20:53:29 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-go@v5
|
2024-03-06 23:22:03 +01:00
|
|
|
with:
|
|
|
|
go-version-file: go.mod
|
|
|
|
- run: go install github.com/a-h/templ/cmd/templ@latest
|
|
|
|
- run: make build
|
|
|
|
- run: make test
|