Build and run tests starter examples #1070
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: Build and run tests starter examples | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
contents: read | |
jobs: | |
runExamples: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: intellij.tools.ide.starter.examples | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1 | |
with: | |
arguments: clean build test | |
build-root-directory: intellij.tools.ide.starter.examples | |
- name: Store reports | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: reports | |
path: | | |
**/build/reports/ | |
**/build/test-results/ | |
- name: Notify in Slack in case of failure | |
uses: slackapi/slack-github-action@v1.24.0 | |
if: ${{ failure() }} | |
with: | |
payload: | | |
{ | |
"channel": "ij-starter-github-failures", | |
"text": ":x: The workflow has failed on <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|${{ github.event.head_commit.message }}>" | |
} | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |