Skip to content

build(deps): bump github.com/a-h/templ from 0.3.819 to 0.3.833 #96

build(deps): bump github.com/a-h/templ from 0.3.819 to 0.3.833

build(deps): bump github.com/a-h/templ from 0.3.819 to 0.3.833 #96

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: build
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install bun dependencies
run: bun i --cwd ./web
- name: Install dependencies
run: go install github.com/a-h/templ/cmd/templ@latest
- name: Generate
run: go generate ./...
- name: Build
run: go build -v ./...