Skip to content

[QI2-1222] Setup requirements #6

[QI2-1222] Setup requirements

[QI2-1222] Setup requirements #6

Workflow file for this run

name: Lint python code
on:
workflow_call:
inputs:
python-version:
default: "3.11"
type: string
poetry-version:
default: "1.8.3"
type: string
jobs:
lint:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: qutech-delft/github-actions/.github/actions/poetry-setup
with:
python-version: ${{ inputs.python-version }}
poetry-version: ${{ inputs.poetry-version }}
- name: run tox lint and type
run: tox -e lint,type