Bump tornado from 6.3.2 to 6.3.3 #331
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: Validate PR | |
on: [pull_request] | |
jobs: | |
job: | |
name: Run integrity test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the changes | |
uses: actions/checkout@v3 | |
- name: Tests | |
run: | | |
make test | |
- name: Save test results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-result | |
path: build | |
- name: Build postgis docker | |
run: | | |
pushd docker/postgis | |
docker build . | |
popd | |
- name: Build generate-vectortiles docker | |
continue-on-error: true | |
run: | | |
pushd docker/generate-vectortiles | |
docker build . | |
popd | |
# Do not auto-build import-data and postgis-preload due to high download requirements |