Skip to content

chore(deps-dev): bump ruff from 0.4.7 to 0.6.0 #1231

chore(deps-dev): bump ruff from 0.4.7 to 0.6.0

chore(deps-dev): bump ruff from 0.4.7 to 0.6.0 #1231

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.10"]
poetry-version: ["1.3"]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python Poetry Action
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
poetry install --extras "cli fast solvents"
- name: Lint with Ruff
run: |
poetry run ruff . --show-source
- name: Lint with Black
uses: psf/black@stable
- name: Test with pytest
run: |
poetry run pytest --cov=. --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}