Update GeoServer #1718
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: Lint and test pygeoapi files | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install program "wait-for-it" | |
run: sudo apt install wait-for-it | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest black rio-cogeo rasterstats | |
- name: Ensures job is exited on error | |
run: set -e | |
- name: Run nginx-test container to create a dummy webspace for the test | |
run: docker run -d --name nginx-test -v $(pwd)/pygeoapi/dev_scripts/default.conf:/etc/nginx/conf.d/default.conf -v $(pwd)/mocked-webspace/:/usr/share/nginx/html -p 81:80 nginx | |
- name: Wait until dummy webspace is available | |
run: wait-for-it "localhost:81" | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Lint Python files | |
run: bash dev_scripts/lint.sh | |
working-directory: pygeoapi | |
- name: Test Python files | |
run: bash dev_scripts/test.sh | |
working-directory: pygeoapi |