Bump org.junit.jupiter:junit-jupiter-engine from 5.8.1 to 5.10.2 in /java #188
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: test | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test-js: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: 'js' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: 'js/.nvmrc' | |
cache: 'npm' | |
cache-dependency-path: 'js/package-lock.json' | |
- run: npm ci | |
- run: npm test | |
test-java: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
defaults: | |
run: | |
working-directory: 'java' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- uses: gradle/actions/setup-gradle@v3 | |
- name: Java converter tests | |
run: ./gradlew test | |
- name: Test running CLI | |
run: | | |
./gradlew cli | |
java -jar ./build/libs/mvt2mlt-1.0-SNAPSHOT.jar -mvt ../test/fixtures/omt/10_530_682.mvt -mlt output/varint.mvt | |
java -jar ./build/libs/mvt2mlt-1.0-SNAPSHOT.jar -mvt ../test/fixtures/omt/10_530_682.mvt -advanced -mlt output/advanced.mvt | |
python -c 'import os; expected=66984; ts=os.path.getsize("output/varint.mvt"); assert ts == expected, f"tile size changed from expected ({expected}), got: {ts}"' | |
python -c 'import os; expected=64728; ts=os.path.getsize("output/advanced.mvt"); assert ts == expected, f"tile size changed from expected ({expected}), got: {ts}"' | |
# This final step is needed to mark the whole workflow as successful | |
done: | |
# Don't change its name - it is used by the merge protection rules | |
name: CI Finished | |
runs-on: ubuntu-latest | |
# List of all the other jobs that must pass for this job to start | |
needs: [ test-java, test-js ] | |
steps: | |
- name: Finished | |
run: echo "CI finished successfully" |