Skip to content

chore(deps): bump the minor-updates group across 1 directory with 2 updates #117

chore(deps): bump the minor-updates group across 1 directory with 2 updates

chore(deps): bump the minor-updates group across 1 directory with 2 updates #117

Workflow file for this run

name: Test Build Go Project
on:
push:
pull_request:
branches:
- main
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.1
- name: Install templ and run templ generate
run: |
go get github.com/a-h/templ/runtime
go install github.com/a-h/templ/cmd/templ@latest
templ generate
- name: Build
run: go build -v ./cmd/main.go