cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
.github/workflows/lint.yml
24lines · modecode
| 1 | name: Lint |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: |
| 6 | - main |
| 7 | pull_request: |
| 8 | branches: |
| 9 | - main |
| 10 | |
| 11 | jobs: |
| 12 | golangci-lint: |
| 13 | runs-on: ubuntu-latest |
| 14 | steps: |
| 15 | - name: Set up Go |
| 16 | uses: actions/setup-go@v2 |
| 17 | with: |
| 18 | go-version: 1.17.3 |
| 19 | |
| 20 | - name: Check out code |
| 21 | uses: actions/checkout@v2 |
| 22 | |
| 23 | - name: Lint code |
| 24 | run: make lint |
| 25 | |