[Fixes #275] Handle multiple replies generated for same request #470
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: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
container: | |
image: qgis/qgis:release-3_18 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: fix Python command | |
run: apt-get install python-is-python3 | |
- name: Install poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install pluginadmin dependencies | |
run: poetry install | |
- name: Check formatting | |
run: poetry run black --check src/qgis_geonode | |
- name: Rebuild docs | |
run: poetry run mkdocs build | |
- name: Regenerate plugin repo XML | |
run: poetry run python pluginadmin.py --verbose generate-plugin-repo-xml | |
- name: Install QGIS Python bindings inside virtualenv | |
run: poetry run python pluginadmin.py --verbose install-qgis-into-venv | |
- name: Run tests | |
run: poetry run pytest --suppress-no-test-exit-code | |
publish-docs: | |
needs: ci | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-20.04 | |
container: | |
image: qgis/qgis:release-3_18 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: fix Python command | |
run: apt-get install python-is-python3 | |
- name: Install poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install pluginadmin dependencies | |
run: poetry install | |
- name: generate plugin repo XML | |
run: poetry run python pluginadmin.py --verbose generate-plugin-repo-xml | |
- name: update docs | |
run: poetry run mkdocs gh-deploy --force |