fix: ensure that the controller and gateway can be deployed to the ma… #7459
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: Check-License | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
- "CONTRIBUTORS" | |
- "CHANGELOG/**" | |
pull_request: | |
branches: [ "*" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
- "CONTRIBUTORS" | |
- "CHANGELOG/**" | |
env: | |
# Common versions | |
GO_VERSION: "1.20" | |
jobs: | |
check-license: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Check License | |
run: make verify-license |