Add render tests #5
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
| # Derived from planetiler (Apache License) | |
| # https://github.com/onthegomap/planetiler/blob/main/.github/workflows/maven.yml | |
| name: Monaco CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| monaco_roads: | |
| name: Build the roads layer on Monaco | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: 'maven' | |
| - name: Build jar | |
| working-directory: tiles | |
| run: mvn clean package -DskipTests | |
| - name: Run roads layer on Monaco | |
| working-directory: tiles | |
| run: ./monaco.sh |