chore: changelog minor change #2
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 and Build Area Calculator on PR against main | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main # Trigger on pull request to the main branch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Run Test | |
run: make test | |
- name: Build application | |
run: make build |