Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
3m1n3nc3 committed Sep 4, 2024
1 parent bb47733 commit 73d2a8d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/run-tests-l10.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Run Tests L10

on: workflow_call
on:
workflow_call:
secrets:
CUTTLY_API_KEY:
required: true
CUTTLY_TEAM_API_KEY:
required: true

jobs:
test:
Expand Down Expand Up @@ -65,5 +71,8 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/logs/clover.xml
call-run-tests-l9:
uses: ./.github/workflows/run-tests-l9.yml
call-run-tests-l9:
uses: ./.github/workflows/run-tests-l9.yml
secrets:
CUTTLY_API_KEY: ${{ secrets.CUTTLY_API_KEY }}
CUTTLY_TEAM_API_KEY: ${{ secrets.CUTTLY_TEAM_API_KEY }}
7 changes: 5 additions & 2 deletions .github/workflows/run-tests-l11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,8 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/logs/clover.xml
call-run-tests-l10:
uses: ./.github/workflows/run-tests-l10.yml
call-run-tests-l10:
uses: ./.github/workflows/run-tests-l10.yml
secrets:
CUTTLY_API_KEY: ${{ secrets.CUTTLY_API_KEY }}
CUTTLY_TEAM_API_KEY: ${{ secrets.CUTTLY_TEAM_API_KEY }}
8 changes: 7 additions & 1 deletion .github/workflows/run-tests-l9.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Run Tests L9

on: workflow_call
on:
workflow_call:
secrets:
CUTTLY_API_KEY:
required: true
CUTTLY_TEAM_API_KEY:
required: true

jobs:
test:
Expand Down

0 comments on commit 73d2a8d

Please sign in to comment.