fix(deps): update dependency marimo to v0.15.2 (#332) #561
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 | |
# Use the composite action to render the project | |
- name: Setup the project | |
uses: ./.github/actions/setup-project | |
- name: Lint | |
run: | | |
task quality:lint | |
- name: Format | |
run: | | |
task quality:fmt |