๐Ÿ“ฆ AzimMuradov / kpeg

๐Ÿ“„ build.yml ยท 32 lines
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
32name: "Build project"

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v2
      - name: "Set up JDK 11"
        uses: actions/setup-java@v2
        with:
          java-version: "11"
          distribution: "adopt"
      - name: "Grant execute permission for gradlew"
        run: chmod +x gradlew
      - name: "Build project with Gradle"
        run: ./gradlew build --info
      - name: "Build project docs with Gradle"
        run: ./gradlew mkdocsBuild --info
      - name: "Upload test reports as an action artifact"
        uses: actions/upload-artifact@v2
        with:
          name: jacoco-test-reports
          path: lib/build/jacocoHtml