Skip to content

feat: implementation #13

feat: implementation

feat: implementation #13

Workflow file for this run

name: Poetry Project CI
#on: [push, pull_request]
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "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 --with lint --with test --with dev
- name: Run lint
run: make lint
- name: Run tests
run: make test