Remove ChatHeads head text, close #40 #448
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
| # Builds the project, as a first line of defense against bad commits. | |
| name: Check Build | |
| on: | |
| push: | |
| paths: [ | |
| '.github/workflows/check-build.yml', | |
| '**src/**', | |
| '**/*gradle*' | |
| ] | |
| pull_request: | |
| paths: [ | |
| '.github/workflows/check-build.yml', | |
| '**src/**', | |
| '**/*gradle*' | |
| ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| java: [ | |
| 25 | |
| ] | |
| os: [ | |
| ubuntu-latest | |
| ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| # Checkout the repository under $GITHUB_WORKSPACE, so the workflow can access it. | |
| # https://github.com/actions/checkout | |
| - name: Checkout sources | |
| uses: actions/checkout@v6 | |
| # Setup Java for the build. | |
| # https://github.com/actions/setup-java | |
| - name: Setup JDK ${{ matrix.java }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: ${{ matrix.java }} | |
| # Setup Gradle for the build. | |
| # https://github.com/gradle/actions/blob/main/setup-gradle | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Make Gradle wrapper executable | |
| if: runner.os != 'Windows' | |
| run: chmod +x ./gradlew | |
| # Build the project. | |
| - name: Build project | |
| shell: bash | |
| run: ./gradlew build --stacktrace | |
| # Upload build artifacts to the workflow report. | |
| # https://github.com/actions/upload-artifact | |
| - name: Capture build artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ${{ github.event.repository.name }}-artifacts-${{ steps.ref.outputs.branch }} | |
| path: | | |
| **/build/libs/*.jar | |
| !buildSrc/** | |
| !common/** |