fix(discord): fixed discord provider #4
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: Run Tests | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
workflow_call: | |
permissions: | |
contents: read | |
env: | |
JAVA_VERSION: "21" | |
DISTRIBUTION: "corretto" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
include: | |
- type: jvm | |
build_args: "" | |
- type: native | |
build_args: "-Dnative" | |
name: Run ${{ matrix.type }} Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Cache Maven Dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ env.JAVA_VERSION }} | |
distribution: ${{ env.DISTRIBUTION }} | |
cache: maven | |
- name: Generate Development Key Pair | |
run: | | |
mkdir -p src/main/resources | |
openssl genpkey -algorithm RSA -out core/src/main/resources/dev-private-key.pem -pkeyopt rsa_keygen_bits:2048 | |
openssl rsa -in core/src/main/resources/dev-private-key.pem -pubout -out core/src/main/resources/dev-public-key.pem | |
- name: Run Tests | |
run: mvn clean test ${{ matrix.build_args }} | |
- name: Output Test Results | |
if: always() | |
run: | | |
echo "${{ matrix.type }} Test Results:" >> $GITHUB_STEP_SUMMARY | |
echo "```" >> $GITHUB_STEP_SUMMARY | |
if [[ -f "target/surefire-reports/TEST-*.xml" ]]; then | |
mvn surefire-report:report-only -DshowSuccess=true | awk ' | |
BEGIN { inTestSection = 0; } | |
/-------------------------------------------------------/ { | |
if (inTestSection) { | |
print ""; # Add blank line after each test section | |
} | |
inTestSection = 1; | |
print; # Print the test section header | |
} | |
inTestSection { print; } # Print test results within a section | |
' >> $GITHUB_STEP_SUMMARY | |
else | |
echo "No test results found." >> $GITHUB_STEP_SUMMARY | |
fi | |
echo "```" >> $GITHUB_STEP_SUMMARY |