Create maven.yml #53
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: Java CI with Maven | |
on: | |
push: | |
branches: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
attestations: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Start MySQL with Docker Compose | |
run: | | |
docker-compose -f atelier3/docker-compose.yml up -d | |
export DB_PASSWORD=$DB_PASSWORD | |
- name: Install Commons with Maven | |
run: mvn -B install --file atelier3/commons/pom.xml | |
- name: Verify Card with Maven | |
run: mvn -B verify --file atelier3/card-server/pom.xml | |
#- name: Verify Auth with Maven | |
# run: mvn -B verify --file atelier3/auth-server/pom.xml | |
- name: Verify Game with Maven | |
run: mvn -B verify --file atelier3/game-server/pom.xml | |
- name: Verify User with Maven | |
run: mvn -B verify --file atelier3/user-server/pom.xml | |
#- name: Verify Discovery with Maven | |
# run: mvn -B verify --file atelier3/discovery-server/pom.xml | |
- name: Verify Gateway with Maven | |
run: mvn -B verify --file atelier3/gateway-server/pom.xml | |
- name: Verify Usercard with Maven | |
run: mvn -B verify --file atelier3/usercard-server/pom.xml | |
- name: Build and analyze | |
env: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=j3lcardmarket.atelier3.commons --file ./atelier3/commons/pom.xml |