Skip to content

Fix makefile lint command #9

Fix makefile lint command

Fix makefile lint command #9

name: Check Python application
on: [push]
jobs:
python-test-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Install poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
virtualenvs-path: .venv
installer-parallel: true
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Execute lint / formatting / tests
run: |
source .venv/bin/activate
make lint
make format
make coverage