Skip to content

Commit

Permalink
Regression testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
avillar committed Sep 30, 2024
1 parent 73bcae8 commit 28dbb2d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test-postprocess.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Postprocessing regression tests
on:
workflow_dispatch:
workflow_run:
workflows:
- Build Docker image
types:
- completed

jobs:
test:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest

strategy:
matrix:
register:
- repo: opengeospatial/bblocks
items: registereditems
- repo: ogcincubator/bblocks-examples

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: ${{ matrix.register.repo }}
- name: OGC BB postprocess
uses: opengeospatial/bblocks-postprocess/postprocess@master
with:
items_dir: ${{ matrix.register.items || '_sources' }}
fail_on_error: 'true'
deploy_viewer: 'false'
github_base_url: 'https://dummy.github.io/${{ matrix.register.repo }}'

0 comments on commit 28dbb2d

Please sign in to comment.