Nightly E2E #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly E2E | |
on: | |
schedule: | |
- cron: 0 0 * * * | |
jobs: | |
e2e: | |
name: End-to-End | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.x | |
- run: go mod download | |
- run: go install github.com/a-h/templ/cmd/templ@v0.2.747 | |
- run: templ generate -path ./components | |
- uses: sqlc-dev/setup-sqlc@v4 | |
with: | |
sqlc-version: '1.27.0' | |
- run: sqlc generate | |
- run: go test -v ./... -tags=e2e |