e 2498 bug le filtre has good first issues de la liste projet ne #4563
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: Backend CI | |
on: | |
pull_request: ~ | |
push: | |
branches: | |
- "main" | |
- "staging" | |
- "production" | |
- "perf" | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: "Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)" | |
required: false | |
default: false | |
jobs: | |
unit_tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Java setup | |
uses: ./.github/actions/java-setup | |
with: | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Maven test | |
run: ./mvnw test -T 6 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage/target/site/jacoco-aggregate/jacoco.xml | |
flags: unit_tests | |
integration_tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
suite: [ Accounting, BO, Concurrency, Me, Project, Reward, User, BI, Others, Postgres ] | |
name: ITs [${{ matrix.suite }}] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
- name: Java setup | |
uses: ./.github/actions/java-setup | |
with: | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Maven test | |
run: ./mvnw verify -Dfailsafe-include='**/${{ matrix.suite }}Suite.java' -DskipUTs=true -T 6 | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage/target/site/jacoco-aggregate/jacoco.xml | |
flags: integration_tests |