Skip to content

Refactor CI

Refactor CI #1

Workflow file for this run

name: Style and Linters
on:
push:
pull_request:
jobs:
style_and_linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Python Poetry Action
uses: abatilo/actions-poetry@v3
with:
poetry-version: "1.6.1"
- name: Install prerequisites
run: |
poetry install --all-extras
poetry self add "poetry-dynamic-versioning[plugin]"
- name: Run style checkers and linters
run: poetry run pre-commit run --all-files -v