Skip to content

Merge pull request #74 from dribia/dependabot/pip/all-a71cef7111 #125

Merge pull request #74 from dribia/dependabot/pip/all-a71cef7111

Merge pull request #74 from dribia/dependabot/pip/all-a71cef7111 #125

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
run: poetry install --only main,lint
- name: Lint
run: make lint