Skip to content

Update version

Update version #1876

Workflow file for this run

name: status
on:
push:
paths-ignore:
- 'docs/**'
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install from local source
run: |
pip install uv
uv sync --all-extras
- name: Linting
run: uv run ruff check batchflow
- name: Run tests
if: always()
run:
uv run pytest -m "not slow" --disable-pytest-warnings -v