Annotations checker jazz edit #20
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: Annotations Checker | |
on: | |
pull_request: | |
branches: | |
- main | |
- annotations-checker-jazz-edit | |
jobs: | |
validate-annotations: | |
name: Validate Annotations | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.19 | |
- name: Download dependencies | |
run: go mod download | |
- name: Run Validation in Docker Container | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DIFF_URL: ${{ github.event.pull_request.diff_url }} | |
run: | | |
cd cmd/annotations-checker |