diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..0b0d2d1 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,20 @@ +name: Go Responsiveness + +on: [pull_request, workflow_dispatch] +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 |
