Skip to content

Add env var for configuration and debug logs #14

Add env var for configuration and debug logs

Add env var for configuration and debug logs #14

Workflow file for this run

name: lint
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry flake8
poetry install
- name: Lint with flake8
run: |
poetry run flake8