Skip to content

Set CI to push and pull requests #1

Set CI to push and pull requests

Set CI to push and pull requests #1

Workflow file for this run

name: Lint
on: [pull_request, push]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10
- name: Install Poetry
run: |
pip install poetry
- name: Configure Poetry
run: |
poetry config virtualenvs.create false
- name: Install dependencies
run: |
make install
- name: Run linting checks
run: |
make check-pylint