cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
.github/workflows/goreleaser.yml
21lines · modecode
| 1 | name: Check goreleaser config |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: |
| 6 | - main |
| 7 | pull_request: |
| 8 | branches: |
| 9 | - main |
| 10 | |
| 11 | jobs: |
| 12 | goreleaser-config: |
| 13 | runs-on: ubuntu-latest |
| 14 | steps: |
| 15 | - name: Check out code |
| 16 | uses: actions/checkout@v2 |
| 17 | |
| 18 | - name: Check config |
| 19 | uses: goreleaser/goreleaser-action@v2 |
| 20 | with: |
| 21 | args: check -f .goreleaser.yml |