Alerting: Sanitize Slack image upload comment labels #6
Workflow file for this run
This file contains 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: Validate Pull Request | |
on: | |
pull_request: | |
concurrency: | |
group: "pr-${{ github.event.pull_request.number }}" | |
cancel-in-progress: true | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
"go-version-file": "go.mod" | |
- name: Verify dependencies | |
run: make mod-check | |
- name: Run linting | |
run: make lint | |
- name: Run tests | |
run: make test |