Skip to content

build(deps-dev): bump glob from 10.3.3 to 10.3.4 #179

build(deps-dev): bump glob from 10.3.3 to 10.3.4

build(deps-dev): bump glob from 10.3.3 to 10.3.4 #179

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@v3
- 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@v3
- 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