Skip to content

Commit

Permalink
Moved detection environment for slow tests to separate job
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed May 27, 2024
1 parent 5f2571c commit 941da79
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,17 @@ jobs:
- name: Branch Protection
run: true

slow-tests:
uses: ./.github/workflows/run-tests.yml
slow-test-detection:
runs-on: ubuntu-latest
steps:
- name: Detect Slow Tests
run: true
environment:
slow-tests

run-slow-tests:
uses: ./.github/workflows/run-tests.yml
needs: [ slow-test-detection ]
secrets: inherit
with:
slow-tests: true
Expand Down

0 comments on commit 941da79

Please sign in to comment.