Skip to content

add comment to setup.cfg #8

add comment to setup.cfg

add comment to setup.cfg #8

Workflow file for this run

name: Python
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: ["3.9"]
poetry-version: ["1.7.0"]
steps:
- uses: actions/checkout@v4
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Test
run: make test