Skip to content

Try braces syntax

Try braces syntax #26

Workflow file for this run

name: Push tests
permissions:
contents: read
on:
push:
branches-ignore: 'main'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
basic-checks:
uses: ./.github/workflows/basic.yml
full-tests:
needs: basic-checks
if: contains( github.event.head_commit.message, '[full tests]' )
uses: ./.github/workflows/platforms.yml

Check failure on line 22 in .github/workflows/push.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/push.yml

Invalid workflow file

error parsing called workflow ".github/workflows/push.yml" -> "./.github/workflows/platforms.yml" (source branch with sha:fc3230a798e4f736e92aa28b7c4f7fe13d129aa2) --> "./.github/workflows/linux.yml" (source branch with sha:fc3230a798e4f736e92aa28b7c4f7fe13d129aa2) : You have an error in your yaml syntax on line 45
extended-tests:
needs: basic-checks
if: contains( github.event.head_commit.message, '[extended tests]' )
uses: ./.github/workflows/extended.yml
downstream-release-tests:
needs: basic-checks
if: contains( github.event.head_commit.message, '[trigger downstream]' )
uses: ./.github/workflows/downstream-release.yml