refactor!: Remove specialized new method for INSEE geographical formats #301
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: 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 |