Skip to content

Attempt to cache findent #5

Attempt to cache findent

Attempt to cache findent #5

Workflow file for this run

# cat .github/workflows/deploy.yml
name: Check Development PRs
on:
# Todo: Remove the push events before merging to develop
push:
branches: [cicd/develop]
pull_request:
branches: [develop]
jobs:
# Pull in the external workflows so we avoid duplication
check_documentation:
uses: ./.github/workflows/check_documentation.yml
check_formatting:
uses: ./.github/workflows/check_formatting.yml

Check failure on line 16 in .github/workflows/pr_develop.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr_develop.yml

Invalid workflow file

error parsing called workflow ".github/workflows/pr_develop.yml" -> "./.github/workflows/check_formatting.yml" (source branch with sha:6648a408a31a1b6a525ed4f314b1b9fba9cef0c3) : a step cannot have both the `uses` and `run` keys
check_compilation:
uses: ./.github/workflows/check_compilation.yml
# Dummy job to trigger the other jobs
check-develop:
name: Run all checks for development PRs
needs:
- check_documentation
- check_formatting
- check_compilation
runs-on: ubuntu-latest
steps:
- name: Success
run: echo "All checks passed"