Skip to content

Add CI pipeline

Add CI pipeline #1

Workflow file for this run

name: ci

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: build, quality, test, webui
on:
pull_request:
branches: [ develop ]
push:
branches: [ master, develop ]
tags:
- v*
jobs:
quality:
test:
needs: quality
webui:
if: ${{ always() }}
needs: [quality, test]
build:
needs: [quality, test, webui]