Skip to content

[Task] Get linter working in CI as a Github action (#1037) #1

[Task] Get linter working in CI as a Github action (#1037)

[Task] Get linter working in CI as a Github action (#1037) #1

Workflow file for this run

name: Push
on:
push:
branches: [main]
jobs:
call-pre:
name: .Pre
uses: ./.github/workflows/.pre.yml
call-lint:
name: Lint
uses: ./.github/workflows/lint.yml
needs: call-pre
call-test:
name: Test
if: ${{ always() }}
uses: ./.github/workflows/test.yml
needs: call-lint
call-codeql:
name: CodeQL
if: ${{ always() }}
uses: ./.github/workflows/codeql.yml
needs: call-lint