Skip to content

Bump version: 0.6.0 → 0.6.1 #583

Bump version: 0.6.0 → 0.6.1

Bump version: 0.6.0 → 0.6.1 #583

Workflow file for this run

name: Pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
check-code:
runs-on: ubuntu-24.04
steps:
# This action sets the current path to the root of your github repo
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
- name: Install pre-commit
run: python3 -m pip install pre-commit
- name: Run hooks
run: pre-commit run --all