Update README.md #52
This file contains 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
name: CI | |
# Automatically stop old builds on the same branch/PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
strategy: | |
max-parallel: 5 | |
matrix: | |
env: | |
- py39 | |
- py310 | |
- py311 | |
- py312 | |
os: | |
- ubuntu-latest | |
- macos-latest | |
# TODO: fix windows | |
# - windows-latest | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup pixi | |
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 # v0.8.1 | |
with: | |
environments: ${{ matrix.env }} | |
- name: Install repository | |
run: | | |
pixi run -e ${{ matrix.env }} postinstall | |
- name: Run tests | |
run: | | |
pixi run -e ${{ matrix.env }} test --color=yes | |
- name: Type checking | |
run: | | |
pixi run -e ${{ matrix.env }} mypy mkdocs_marimo | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Setup pixi | |
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 # v0.8.1 | |
with: | |
environments: lint default | |
- name: pre-commit | |
run: pixi run pre-commit-run --color=always --show-diff-on-failure |