check length of comment before saving #698
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous integration | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
pull_request: | |
jobs: | |
pyproject-lock-file-check: | |
name: Check pyproject syntax | |
runs-on: ubuntu-latest | |
container: python:3.9-slim | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: pip install poetry | |
- name: Check pyproject.toml syntax and consistency with poetry.lock | |
run: poetry check | |
format-code: | |
name: Check code format | |
runs-on: ubuntu-latest | |
container: python:3.9-slim | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: | | |
apt update | |
apt install -y python3-poetry make | |
- name: Create virtual environment | |
run: make init | |
- name: Check code format | |
run: make check-format | |
format-import: | |
name: Check imports format | |
runs-on: ubuntu-latest | |
container: python:3.9-slim | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: | | |
apt update | |
apt install -y python3-poetry make | |
- name: Create virtual environment | |
run: make init | |
- name: Check code import format | |
run: make check-import-sorting | |
lint-style: | |
name: Check code style | |
runs-on: ubuntu-latest | |
container: python:3.9-slim | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: | | |
apt update | |
apt install -y python3-poetry make | |
- name: Create virtual environment | |
run: make init | |
- name: Check code style | |
run: make check-style | |
lint-typing: | |
name: Check static typing | |
runs-on: ubuntu-latest | |
container: python:3.9-slim | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install required packages | |
run: | | |
apt update | |
apt install -y python3-poetry make libglib2.0-dev | |
- name: Create virtual environment | |
run: make init | |
- name: Check code static typing | |
run: make check-typing |