diff --git a/.github/workflows/go-test.yaml b/.github/workflows/go-test.yaml new file mode 100644 index 000000000..eb3bc6f02 --- /dev/null +++ b/.github/workflows/go-test.yaml @@ -0,0 +1,13 @@ +name: go-test +on: + pull_request: + branches: + - main +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Test with the Go CLI + run: go test ./... + \ No newline at end of file