aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: 379f842d8e1951f8a19d17f349a925f64c402d0e (plain)
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
name: Build

on:
  push:
    branches:
      - "*"
    paths-ignore:
      - ".gitignore"
  pull_request:
    branches:
      - "*"
    paths-ignore:
      - ".gitignore"
  workflow_dispatch:
permissions: write-all
jobs:
  build:
    runs-on: ubuntu-latest
    name: "Build and test"
    steps:
      - uses: actions/checkout@v3
      - name: Set up JDK 17
        uses: actions/setup-java@v3
        with:
          java-version: 17
          distribution: temurin
          cache: gradle
      - name: Setup gradle
        uses: gradle/gradle-build-action@v2
      - name: Build with Gradle
        run: ./gradlew build -x test --stacktrace
      - uses: actions/upload-artifact@v3
        name: Upload development build
        with:
          name: "Development Build"
          path: build/libs/*.jar
      - name: Test with Gradle
        run: ./gradlew test
      - uses: actions/upload-artifact@v3
        name: "Upload test report"
        if: ${{ !cancelled() }}
        with:
          name: "Test Results"
          path: build/reports/tests/test/