Some checks failed
PR Check / check-and-test (pull_request) Failing after 8s
- 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.
15 lines
352 B
YAML
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 ./... |