Skip to content

Add Jira integration #13

Add Jira integration

Add Jira integration #13

Workflow file for this run

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