diff --git a/.github/workflows/go.yaml b/.github/workflows/go.yaml new file mode 100644 index 0000000..fafb520 --- /dev/null +++ b/.github/workflows/go.yaml @@ -0,0 +1,19 @@ +name: compile-or-die + +on: + pull_request: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version: '1.22' + + - run: go mod download + - run: go build ./... \ No newline at end of file