Skip to content

chore(sandbox): align with design for plural sandbox path #27

chore(sandbox): align with design for plural sandbox path

chore(sandbox): align with design for plural sandbox path #27

Workflow file for this run

name: Python CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]"
- run: ruff check .
- run: pytest
- name: upload coverage
if: success() && matrix.python-version == '3.12' && github.actor != 'dependabot[bot]'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false