Skip to content

feat: implementation #6

feat: implementation

feat: implementation #6

Workflow file for this run

name: Poetry Project CI
on: [push, pull_request]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
poetry-version: ["latest"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry sync --no-interaction --no-ansi --all-groups
- name: Run lint
run: make lint
- name: Run tests
run: make test