-
Notifications
You must be signed in to change notification settings - Fork 7
50 lines (47 loc) · 1.44 KB
/
starter-examples.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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/[email protected]
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 }}