Skip to content

chmod temp test files because GHA uses a different user #131

chmod temp test files because GHA uses a different user

chmod temp test files because GHA uses a different user #131

Workflow file for this run

name: Main
on:
push:
jobs:
build_and_test:
name: 'Go Build and Test (1.20)'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.20'
- run: './build.sh' # verify the thing compiles first
- run: 'go test -c -v ./test && ./test.test' # cheat and work around working directory issues
timeout-minutes: 30