Skip to content

Update test.yml

Update test.yml #12

Workflow file for this run

name: Test and Build
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: ls $(go env GOPATH)/bin
- run: ls ~ -lha
- run: export PATH=$PATH:$(go env GOPATH)/bin
- run: PATH=$PATH:$(go env GOPATH)/bin templ --help
- run: make test
- run: make build