Skip to content

fix: address comments from vrs 2.0.0 community review ballot #13

fix: address comments from vrs 2.0.0 community review ballot

fix: address comments from vrs 2.0.0 community review ballot #13

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"
- "trailing-whitespace"
- "end-of-file-fixer"
- "mixed-line-ending"
- "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