Add GitHub Action workflow to build images (#41) #8
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: "Build test" | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Test build repository | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize Golang environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.4 | |
- name: Build repository | |
shell: bash | |
run: ./build.sh |