Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/check_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ jobs:
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}

- &setup_go
name: Setup Go
uses: actions/[email protected]
with:
go-version: '1.25.x'
- name: Run tests
run: make test

Expand All @@ -41,21 +45,16 @@ jobs:
run: clean/test

license_validation:
needs: [run_tests]
name: "Validate that license added to all files"
runs-on: ubuntu-latest

steps:
- *checkout_step
- name: Setup Go
uses: actions/[email protected]
with:
go-version: '1.25.x'
- *setup_go
- name: Run validation
run: make validation/license

lint:
needs: [run_tests, license_validation]
name: "Lint golang code"
runs-on: ubuntu-latest

Expand Down
Loading