Bump org.mockito:mockito-core from 5.8.0 to 5.10.0 #128
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: Micronaut CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout git repository | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Build with Maven | |
run: mvn --batch-mode install | |
- name: Run tests with Maven | |
run: mvn --batch-mode test | |
- name: Start application for load Test | |
run: java -jar target/training-service-0.1.jar & | |
- name: Run local k6 test | |
uses: grafana/[email protected] | |
with: | |
filename: loadTest.js | |
flags: --out json=results.json | |
- name: Upload performance test results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: k6-report | |
path: results.json |