name: Linting permissions: {} on: push: branches: - "*" pull_request: branches: - "*" concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: manifests: name: diff runs-on: ubuntu-24.04 steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 with: fetch-depth: 0 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version-file: 'go.mod' - name: Generate manifests run: | make generate make manifests if [[ $(git diff --stat) != '' ]]; then echo -e '\033[0;31mManifests outdated! (Run make manifests locally and commit)\033[0m ❌' git diff --color exit 1 else echo -e '\033[0;32mDocumentation up to date\033[0m ✔' fi yamllint: name: yamllint runs-on: ubuntu-24.04 steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: Install yamllint run: pip install yamllint - name: Lint YAML files run: yamllint -c=.github/configs/lintconf.yaml . golangci: name: lint runs-on: ubuntu-24.04 steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0 with: go-version-file: 'go.mod' - name: Run golangci-lint run: make golint