Skip to content

Commit

Permalink
Add CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Mar 10, 2024
1 parent ea4f11a commit 1841592
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@ on:

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]
2 changes: 1 addition & 1 deletion .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
name: quality

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: test

# on: [push]
on: [push]

jobs:
test-linux:
Expand Down

0 comments on commit 1841592

Please sign in to comment.