Skip to content

Removes Deployment from build-docs for Community based PR (#201) #165

Removes Deployment from build-docs for Community based PR (#201)

Removes Deployment from build-docs for Community based PR (#201) #165

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
all-tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Clone repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python-version }}
- name: Set matplotlib backend (headless)
run: echo "MPLBACKEND=Agg" >> $GITHUB_ENV
shell: bash
- name: Install dependencies
run: |
pip install -e ".[dev]"
- name: Run pytest
run: pytest