Skip to content

omg

omg #3

Workflow file for this run

name: checks
on: [push, pull_request]
jobs:
precommit_hooks:
runs-on: ubuntu-latest
strategy:
matrix:
- cmd: "check-added-large-files"

Check failure on line 8 in .github/workflows/cqa.yaml

View workflow run for this annotation

GitHub Actions / checks

Invalid workflow file

The workflow is not valid. .github/workflows/cqa.yaml (Line: 8, Col: 9): A sequence was not expected
- cmd: "trailing-whitespace"
- cmd: "end-of-file-fixer"
- cmd: "mixed-line-ending"
- cmd: "update-json-def-files"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- uses: pre-commit/[email protected]
with:
extra_args: ${{ matrix.cmd }} --all-files