fix(deps): update dependency cvxbson to v0.2.0 (#322) #531
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is part of the tschm/.config-templates repository | |
# (https://github.com/tschm/.config-templates). | |
# | |
# Workflow: Pre-commit | |
# Purpose: This workflow runs pre-commit checks to ensure code quality | |
# and consistency across the codebase. It helps catch issues | |
# like formatting errors, linting issues, and other code quality | |
# problems before they are merged. | |
# | |
# Trigger: This workflow runs on every push | |
# | |
# Components: | |
# - 🔍 Run pre-commit checks using reusable action | |
name: "PRE-COMMIT" | |
on: | |
push: | |
permissions: | |
contents: read | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repository code | |
- uses: actions/checkout@v5 | |
# install uv and task | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
- name: Install Task | |
uses: arduino/setup-task@v2 | |
with: | |
version: 3.x | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Lint | |
run: | | |
task quality:lint | |
- name: Format | |
run: | | |
task quality:fmt |