-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (37 loc) · 1.11 KB
/
tests.yml
File metadata and controls
38 lines (37 loc) · 1.11 KB
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
name: 'Lint and test'
on:
push:
branches:
- master
- stable
paths-ignore:
- 'doc/**'
- '**.md'
pull_request:
paths-ignore:
- 'doc/**'
- '**.md'
workflow_dispatch: # Allow triggering manually
inputs:
core_ref:
description: Use a specific version of the core for the workflow run. Defaults to master.
type: string
default: ''
wagon_dependency_ref:
description: Not used in this wagon, but accepted for consistency across all wagons.
type: string
default: ''
distinct_id:
description: An optional identifier which is simply output again, in order to identify the workflow run when triggered from another repo
type: string
default: ''
jobs:
wagon_tests:
uses: hitobito/hitobito/.github/workflows/wagon-tests.yml@master
with:
wagon_repository: ${{ github.event.repository.name }}
core_ref: ${{ inputs.core_ref }}
distinct_id: ${{ inputs.distinct_id }}
secrets:
HEARTBEAT_URL: ${{ secrets.HEARTBEAT_URL }}
HEARTBEAT_TOKEN: ${{ secrets.HEARTBEAT_TOKEN }}