Skip to content

Dependency updates #310

Dependency updates

Dependency updates #310

Workflow file for this run

---
name: Lint and format workflow
on:
push:
branches: ["*", "!push-action/*"]
pull_request:
branches: ["*", "!push-action/*"]
jobs:
quality:
name: Lint code
if: github.event.pull_request.merged == false
runs-on: ubuntu-latest
steps:
- name: Setup Python environment
uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.3.4
with:
python-version: "3.10"
- name: yamlfix
run: poetry run poe yamlfix-check
- name: ruff
run: poetry run poe ruff-lint-check
- name: snakefmt
run: poetry run poe snakefmt-check