mirror of
https://github.com/nicolargo/glances.git
synced 2025-01-08 02:58:56 +03:00
24 lines
464 B
YAML
24 lines
464 B
YAML
name: ci
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ develop ]
|
|
push:
|
|
branches: [ master, develop ]
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
quality:
|
|
uses: ./.github/workflows/quality.yml
|
|
test:
|
|
uses: ./.github/workflows/test.yml
|
|
needs: quality
|
|
webui:
|
|
if: ${{ always() }}
|
|
uses: ./.github/workflows/webui.yml
|
|
needs: [quality, test]
|
|
build:
|
|
uses: ./.github/workflows/build.yml
|
|
needs: [quality, test, webui]
|