Skip to content

weighted interventions #296

weighted interventions

weighted interventions #296

Workflow file for this run

---
name: Formatting
on:
workflow_call:
push:
branches: ['main']
pull_request:
branches: ['main', 'dev/*']
jobs:
formatting:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.5.1
- name: Create environment
run: poetry install
- name: Black
run: poetry run black . --check --verbose
- name: Ruff
run: poetry run ruff .