chore(deps): update dependency io.gatling:gatling-maven-plugin to v4.8.1 #100
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: gatling-tests | |
on: | |
push: | |
paths: | |
- "gatling-tests/**" | |
branches: [main] | |
pull_request: | |
paths: | |
- "gatling-tests/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
name: Run Unit & Integration Tests with jdk ${{ matrix.java }} | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "gatling-tests" | |
strategy: | |
matrix: | |
java: ["17"] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/[email protected] | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: "zulu" | |
cache: "maven" | |
- name: Start up softwares via Docker Compose | |
run: | | |
docker compose up -d | |
sleep 240 | |
docker ps -a | |
- name: Build and analyze | |
run: ./mvnw clean gatling:test |