wip #9
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| cite-validation: | |
| name: OGC Cite Validation (Features) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| run: docker compose up --build -d | |
| - name: Check running containers | |
| run: docker ps -a | |
| - name: Load | |
| run: docker exec ogcapi cargo run -p data-loader -- --input data/ne_110m_admin_0_countries.geojson --collection countries | |
| - name: Run | |
| run: docker exec -d ogcapi cargo run -p cite-service | |
| - name: Check running service | |
| run: curl http://0.0.0.0:8484 | |
| - name: Validate | |
| uses: OSGEO/[email protected] | |
| with: | |
| test_suite_identifier: ogcapi-features-1.0 | |
| test_session_arguments: iut=http://host.docker.internal:8484 |