Skip to content

Docs: Update README file #289

Docs: Update README file

Docs: Update README file #289

Workflow file for this run

name: Pull Request Review & Merge
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
push:
branches: [main]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: install poetry
run: pip install poetry==1.6
- name: install dependencies
run: poetry install --with linting,dev
- name: linting
run: make lint
- name: set up locale
run: |
sudo apt-get update
sudo apt-get install -y locales
sudo locale-gen fr_FR.UTF-8
- name: testing
run: make test
- name: Check that documentation is up to date
run: |
make generate-docs && git add ./docs/formats.md && git diff --cached --exit-code