bumped java to v17 #664
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: CI on windows-latest | |
on: | |
push: | |
branches: [ main, development, tests_fixes ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: "20 0 * * *" | |
workflow_dispatch: | |
jobs: | |
test-on-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Silent install main project | |
run: mvn --batch-mode --no-transfer-progress install -DskipTests | |
- name: Run automation tests with latest ngrok-spring-boot-starter version on test-app and spring-boot v2 | |
working-directory: ./.github/test-app-sb-2x/ | |
env: | |
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} | |
run: mvn --batch-mode --no-transfer-progress test | |
- name: Run automation tests with latest ngrok-spring-boot-starter version on test-app and spring-boot v3 | |
working-directory: ./.github/test-app-sb-3x/ | |
env: | |
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }} | |
run: mvn --batch-mode --no-transfer-progress test |