Skip to content

Bump ruff from 0.2.1 to 0.2.2 #243

Bump ruff from 0.2.1 to 0.2.2

Bump ruff from 0.2.1 to 0.2.2 #243

Workflow file for this run

name: Python
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8.15, 3.9.16, 3.10.9, 3.11.1, 3.11.5, 3.12]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.7.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install habanero
run: python -m pip install .
- name: Tests
if: contains(fromJSON('["3.10.9", "3.11.1", "3.11.5", "3.12"]'), matrix.python-version)
run: pytest
- name: Test coverage
if: matrix.python-version == '3.11.5'
run: |
python -m "pytest" --cov-report=xml --cov=habanero test/
codecov