Update version #1876
Workflow file for this run
This file contains hidden or 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: 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 |