Skip to content

Linting

Linting #17

Workflow file for this run

name: Linting
on:
pull_request:
branches:
- master
push:
branches:
- master
schedule:
- cron: "0 0 * * 0"
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: poetry
- name: Install Dependencies
run: poetry install --no-interaction --no-root
- name: Install Package
run: poetry install --no-interaction
- name: Run Linting
run: poetry run poe lint