Claude/discord webhook debug logs xei0xy #234
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: pull_request | |
| on: | |
| pull_request: | |
| branches-ignore: | |
| - master | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: stable | |
| check-latest: true | |
| - name: Download dependencies | |
| run: make tidy | |
| - name: Run go vet | |
| run: make vet | |
| - name: Run golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.12.2 | |
| - name: Run tests | |
| run: make test | |
| - name: Build binary | |
| run: make build | |
| - name: Build Docker image | |
| run: make image |