Skip to content

feat: create panel for registering new manwhas #31

feat: create panel for registering new manwhas

feat: create panel for registering new manwhas #31

Workflow file for this run

name: Lint Backend
on:
pull_request:
paths:
- "backend/**"
env:
PYTHON_VERSION: "3.11"
jobs:
lint-backend:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./backend
steps:
- name: Checkout to git repository
uses: actions/checkout@v2
- name: Load cached Poetry installation
id: cached-poetry
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-installation-cache
- name: Install poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
- name: Setup Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: "poetry"
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Run linter
run: make run-lint