Skip to content

Merge pull request #278 from dribia/dependabot/pip/all-982229149a #183

Merge pull request #278 from dribia/dependabot/pip/all-982229149a

Merge pull request #278 from dribia/dependabot/pip/all-982229149a #183

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
branches:
- main
jobs:
test:
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