Skip to content

fix(deps): update dependency marimo to v0.15.2 (#332) #561

fix(deps): update dependency marimo to v0.15.2 (#332)

fix(deps): update dependency marimo to v0.15.2 (#332) #561

Workflow file for this run

# 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