Skip to content

build(deps): bump crate-ci/typos from 1.16.17 to 1.16.18 #214

build(deps): bump crate-ci/typos from 1.16.17 to 1.16.18

build(deps): bump crate-ci/typos from 1.16.17 to 1.16.18 #214

Workflow file for this run

name: lint
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
typos:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run [typos]
uses: crate-ci/[email protected]
pre-commit:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
hook_id: [
trailing-whitespace,
end-of-file-fixer,
check-yaml,
detect-private-key
]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
- name: Run [${{ matrix.hook_id }}]
uses: pre-commit/[email protected]
with:
extra_args: ${{ matrix.hook_id }} --all-files