Skip to content

Workflow file for this run

name: Linux
on:
pull_request:
branches:
- '*'
push:
branches:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
RUST_BACKTRACE: 1
jobs:
clippy:
strategy:
matrix:
runner_image: [ubuntu-22.04]
build_type: [Release, Debug]
uses: ./.github/workflows/clippy.yml

Check failure on line 26 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/main.yml" -> "./.github/workflows/clippy.yml" (source branch with sha:846f2b57b0989fcecd6da4292323f84f520a935c) : You have an error in your yaml syntax on line 15
secrets: inherit
with:
runner_image: ${{ matrix.runner_image }}
build_type: ${{ matrix.build_type }}
check:
strategy:
matrix:
runner_image: [ubuntu-22.04]
build_type: [Release, Debug]
uses: ./.github/workflows/check.yml
secrets: inherit
with:
runner_image: ${{ matrix.runner_image }}
build_type: ${{ matrix.build_type }}
linux:
needs: [clippy, check]
strategy:
matrix:
runner_image: [ubuntu-22.04]
build_type: [Release, Debug]
uses: ./.github/workflows/posix_build.yml
secrets: inherit
with:
runner_image: ${{ matrix.runner_image }}
build_type: ${{ matrix.build_type }}