replace promote scripts #4582
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 | |
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 |