forked from astarte-platform/astarte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastarte-housekeeping-workflow.yaml
More file actions
39 lines (35 loc) · 1003 Bytes
/
astarte-housekeeping-workflow.yaml
File metadata and controls
39 lines (35 loc) · 1003 Bytes
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
name: Build and Test Astarte Housekeeping
on:
# Run when pushing to stable branches
push:
paths:
- "apps/astarte_housekeeping/**"
- "libs/**"
- ".github/workflows/astarte-apps-build-workflow.yaml"
- ".github/workflows/astarte-housekeeping-workflow.yaml"
- ".github/codecov.yml"
branches:
- "master"
- "release-*"
# Run on branch/tag creation
create:
# Run on pull requests for astarte_housekeeping
pull_request:
paths:
- "apps/astarte_housekeeping/**"
- "libs/**"
- ".github/workflows/astarte-apps-build-workflow.yaml"
- ".github/workflows/astarte-housekeeping-workflow.yaml"
- ".github/codecov.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
astarte_housekeeping:
uses: ./.github/workflows/astarte-apps-build-workflow.yaml
with:
app: "astarte_housekeeping"
secrets: inherit