Skip to content

Internally fix developer errors on error responses #141

Internally fix developer errors on error responses

Internally fix developer errors on error responses #141

Workflow file for this run

name: Main
on:
push:
jobs:
build:
name: 'Go Build (1.20)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- run: './build.sh' # verify the thing compiles first
test:
name: 'Go Test (1.20)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- run: "GOBIN=$PWD/bin go install -v ./cmd/compile_assets"
- run: "$PWD/bin/compile_assets"
- run: "go test -c -v ./test && ./test.test '-test.v'" # cheat and work around working directory issues
timeout-minutes: 30