summaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
blob: 696b4fe57ea23519359231bd42e604b4e841c20b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: ci

on:
    pull_request:
      branches: [ develop ]
    push:
      branches: [ master, develop ]
      tags:
        - v*

jobs:
    quality:
      uses: ./.github/workflows/quality
    test:
      uses: ./.github/workflows/test
      needs: quality
    webui:
      if: ${{ always() }}
      uses: ./.github/workflows/webui
      needs: [quality, test]
    build:
      uses: ./.github/workflows/build
      needs: [quality, test, webui]