From 88436911ab816696419f336832a575283cf9f42f Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Fri, 19 May 2023 13:49:57 -0400 Subject: Adding `go test` support to pull requests --- .github/workflows.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows.yaml (limited to '.github') diff --git a/.github/workflows.yaml b/.github/workflows.yaml new file mode 100644 index 0000000..ca57a54 --- /dev/null +++ b/.github/workflows.yaml @@ -0,0 +1,24 @@ +name: Go Responsiveness + +on: + pull_request: + branches: main + types: edited + +jobs: + build: + + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: make build + + - name: Test + run: make test \ No newline at end of file -- cgit v1.2.3