Skip to content

Workflow file for this run

name: check
on:
workflow_run:
workflows: [prepare]
types:
- completed
jobs:
check:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest

Check failure on line 13 in .github/workflows/stage1.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/stage1.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
container:
image: ghcr.io/siskapavel/oraclelinux:ol9
steps:
- run: echo ${{ env.REGISTRY }}
- uses: actions/checkout@v3
- name: Check clang-format
run: find . -type f -regextype posix-egrep -regex '.*.(hpp|cpp)$' -print0 | xargs -0 clang-format --dry-run --Werror --style=file