-
Notifications
You must be signed in to change notification settings - Fork 1
47 lines (38 loc) · 1.11 KB
/
run_tests.yml
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
name: Tests
on:
workflow_dispatch:
inputs:
checkout-ref:
description: "The branch, tag or SHA to checkout. See actions/checkout 'ref'."
required: false
type: string
workflow_call:
inputs:
checkout-ref:
description: "The branch, tag or SHA to checkout. See actions/checkout 'ref'."
required: false
type: string
concurrency:
group: "Tests: ${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
permissions:
contents: read
checks: write # required by mikepenz/action-junit-report
jobs:
gradle-check:
strategy:
matrix:
include:
- os: macos-latest
task: "check --continue"
- os: ubuntu-latest
task: "check --continue"
- os: windows-latest
task: "check --continue"
fail-fast: false
uses: ./.github/workflows/run_gradle_task.yml
with:
runs-on: ${{ matrix.os }}
gradle-task: >-
${{ matrix.task }} --stacktrace
checkout-ref: ${{ inputs.checkout-ref }}