Add line1 and line2 element, split of full street #233
This file contains hidden or 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: QA checks | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: # launches | |
| fail-fast: false | |
| matrix: | |
| task: # yamllint disable rule:indentation | |
| - lint | |
| - yamllint | |
| - check_types | |
| - check_fmt | |
| - test | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.9.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9.12 | |
| - name: Set up cache | |
| uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: /home/runner/.cache/pypoetry/virtualenvs | |
| key: venv-${{ hashFiles('**/.github/workflows/qa.yml') }}-${{ hashFiles('**/poetry.lock') | |
| }} | |
| - name: Install dependencies | |
| run: |2 | |
| curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.4.2 python3 - | |
| poetry install | |
| - name: QA | |
| run: poetry run task ${{ matrix['task'] }} |