Skip to content

Add a ServiceConfig dict #55

Add a ServiceConfig dict

Add a ServiceConfig dict #55

Workflow file for this run

name: Linters
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
Linters:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
# Issue ref: https://github.com/actions/setup-python/issues/436
# cache: "pip"
cache-dependency-path: pyproject.toml
python-version-file: pyproject.toml
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run static checks
run: poetry run poe static-checks