Skip to content

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

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

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

Workflow file for this run

# This file is part of the tschm/.config-templates repository
# (https://github.com/tschm/.config-templates).
#
# Workflow: Continuous Integration
# Purpose: This workflow runs tests on multiple Python versions to ensure
# compatibility and code quality across different environments.
#
# Trigger: This workflow runs on every push
#
# Components:
# - 🧪 Run tests on multiple Python versions
# - 🔄 Matrix strategy for testing on different environments
name: "CI"
on:
- push
permissions:
contents: read
jobs:
test:
# if: github.repository != 'tschm/.config-templates'
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
# mongo container action only supported on Linux
os: [ ubuntu-latest ]
python-version: [ '3.11', '3.12', '3.13' ]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout repository
uses: actions/checkout@v5
# Use the composite action to set up the project
- name: Setup the project
id: setup
uses: ./.github/actions/setup-project
with:
python-version: ${{ matrix.python-version }}
- name: "Run the tests"
run: |
uv pip install pytest
uv run pytest tests