Skip to content

add lint check to workflow.yml #339

add lint check to workflow.yml

add lint check to workflow.yml #339

Workflow file for this run

name: Complete Workflow
on: [push, pull_request]
env:
PYTHON_KEYRING_BACKEND: keyring.backends.null.Keyring
FORCE_COLOR: "1"
jobs:
pre-commit-check:
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
uses: ./.github/workflows/pre-commit-check.yml
secrets: inherit
lint-check:
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
uses: ./.github/workflows/lint-check.yml

Check failure on line 20 in .github/workflows/workflow.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow.yml

Invalid workflow file

error parsing called workflow ".github/workflows/workflow.yml" -> "./.github/workflows/lint-check.yml" : failed to fetch workflow: workflow was not found.
secrets: inherit
run-tests:
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
uses: ./.github/workflows/run-tests.yml
secrets: inherit