chore(deps): bump docker/build-push-action from f8bc7f46003ef0cf98b715743d86c2f1ccd01436 to 6003d3266a923de06063d23a19bd1c719af997c0 #69
Workflow file for this run
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: 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 install github.com/a-h/templ/cmd/templ@latest | |
templ generate | |
- name: Build | |
run: go build -v ./cmd/main.go |