diff options
| -rw-r--r-- | .github/workflows.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
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 |
