Files
jiggablend/.gitea/workflows/test-pr.yaml
Justin Harms 0b852c5087
Some checks failed
PR Check / check-and-test (pull_request) Failing after 8s
Update Gitea workflow to specify output binary location for jiggablend build
- Changed the build command in the test-pr.yaml workflow to output the jiggablend binary to the bin directory.
- This modification enhances the organization of build artifacts and aligns with project structure.
2026-01-02 17:40:34 -06:00

15 lines
352 B
YAML

name: PR Check
on:
- pull_request
jobs:
check-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-go@main
with:
go-version-file: 'go.mod'
- run: go mod tidy
- run: go build -o bin/jiggablend ./cmd/jiggablend
- run: go test -race -v -shuffle=on ./...