From c2cc84fac37b79a7f9b256cce7200b95af4d398c Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Fri, 17 Jan 2025 14:23:29 +0400 Subject: [PATCH] testing Marimo flow --- template/.github/workflows/marimo.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/template/.github/workflows/marimo.yml b/template/.github/workflows/marimo.yml index 9c65e31..2f6a6bf 100644 --- a/template/.github/workflows/marimo.yml +++ b/template/.github/workflows/marimo.yml @@ -9,7 +9,11 @@ permissions: jobs: install: + runs-on: ubuntu-latest + matrix: + python-version: [ '3.10', '3.12' ] + steps: - uses: actions/checkout@v4 @@ -28,7 +32,7 @@ jobs: - name: "Set up Python" uses: actions/setup-python@v5 with: - python-version: "3.12" + python-version: ${{ matrix.python-version }} - name: Create venv and install dependencies + marimo run: |