Skip to content

Merge pull request #69 from gabbhack/dependabot/pip/aiogram-3.0.0rc2 #29

Merge pull request #69 from gabbhack/dependabot/pip/aiogram-3.0.0rc2

Merge pull request #69 from gabbhack/dependabot/pip/aiogram-3.0.0rc2 #29

Workflow file for this run

name: Run linters
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
branches:
- master
jobs:
build:
if: "github.event.pull_request.draft == false && ! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: abatilo/actions-poetry@v2
with:
poetry-version: 1.5.1
- uses: actions/setup-python@v4
with:
python-version: 3.11
cache: 'poetry'
- name: Install deps
run: poetry install
- name: Lint
run: make lint