Skip to content

initial CI setup

initial CI setup #6

Workflow file for this run

name: lint
on:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup environment
uses: ./.github/actions/setup-env
- name: Setup lint utilities
run: pre-commit install-hooks
- name: Run pre-commit
run: pre-commit run --all-files --show-diff-on-failure --color=always