Implemented quick reaction on incoming messages #1084
Workflow file for this run
This file contains hidden or 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: Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - '**' | |
| paths-ignore: | |
| - '**/README*.md' | |
| - '**/BUILDING.md' | |
| - '.github/FUNDING.yml' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Free up disk space in runner | |
| uses: ./.github/actions/disk-cleanup | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Copy Docker gradle.properties | |
| run: cp gradle.properties.docker "$GRADLE_USER_HOME/gradle.properties" | |
| - name: Run tests | |
| run: ./gradlew build | |
| - name: Archive reports for failed tests | |
| if: "failure()" | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-reports-${{ github.run_id }} | |
| path: '*/build/reports' |