Skip to content

Merge pull request #91 from genotoul-bioinfo/fix_contig_filtering #116

Merge pull request #91 from genotoul-bioinfo/fix_contig_filtering

Merge pull request #91 from genotoul-bioinfo/fix_contig_filtering #116

Workflow file for this run

name: Lint and Format
on: [push, pull_request]
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff linter
run: ruff check binette/
- name: Run Ruff formatter check
run: ruff format --check binette/