diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 00000000..4b2f356c --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,23 @@ +on: + pull_request: + branches: + - "*" + push: + branches: + - "*" +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.22.0' + - name: Build + run: go build -v ./... + - name: Test + run: go test -v ./... + +name: Building And Testing