Skip to content

Bump actions to v0.3.0 #303

Bump actions to v0.3.0

Bump actions to v0.3.0 #303

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/[email protected]
with:
python-version: "3.10"
- name: yamlfix
run: poetry run poe yamlfix-check
- name: ruff
run: poetry run poe ruff-check
- name: isort
run: poetry run poe isort-check
- name: black
run: poetry run poe black-check
- name: snakefmt
run: poetry run poe snakefmt-check