Skip to content

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

[Task] Get linter working in CI as a Github action

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

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [main]
jobs:
call-lint:
uses: ./.github/workflows/lint.yml
call-test:
if: ${{ always() }}
uses: ./.github/workflows/test.yml
needs: call-lint
call-codeql:
if: ${{ always() }}
uses: ./.github/workflows/codeql.yml
needs: call-lint