Skip to content

Testing a workflow

Testing a workflow #43

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [main]
jobs:
call-pre:
name: .Pre
uses: ./.github/stages/.pre.yml

Check failure on line 10 in .github/workflows/pull_request.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pull_request.yml

Invalid workflow file

invalid value workflow reference: no version specified
call-lint:
name: Lint
uses: ./.github/stages/lint.yml
needs: call-pre
call-test:
name: Test
if: ${{ always() }}
uses: ./.github/stages/test.yml
needs: call-lint
call-codeql:
name: CodeQL
if: ${{ always() }}
uses: ./.github/stages/codeql.yml
needs: call-lint