Skip to content

docs: Add additional run requirements to 'local' and 'reana' backend examples #140

docs: Add additional run requirements to 'local' and 'reana' backend examples

docs: Add additional run requirements to 'local' and 'reana' backend examples #140

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
name: Lint Codebase
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install uv
uv pip install --system --upgrade pip setuptools wheel
uv pip install --system --upgrade '.[develop]'
uv pip list --system
- name: Lint with flake8
run: |
python -m flake8 .
- name: Lint with Black
run: |
black --check --diff --verbose .