Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

build(deps): bump serve-static and express #68

build(deps): bump serve-static and express

build(deps): bump serve-static and express #68

Workflow file for this run

name: Linting
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies with Poetry
run: |
poetry install --only dev
- name: Run lint
run: make lint