Skip to content

chore(deps): update dependency io.gatling:gatling-maven-plugin to v4.8.0 #98

chore(deps): update dependency io.gatling:gatling-maven-plugin to v4.8.0

chore(deps): update dependency io.gatling:gatling-maven-plugin to v4.8.0 #98

Workflow file for this run

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