Skip to content

Commit

Permalink
Merge pull request #3 from q71114/test
Browse files Browse the repository at this point in the history
test
  • Loading branch information
q71114 authored Jul 26, 2024
2 parents 023510f + 13bf7fc commit 1fa6e20
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/check-tests-after-push-2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: "[Check] Run tests after push"

on:
pull_request:
types: [opened, reopened, edited]

jobs:
nightly-ui-tests:
runs-on: windows-2022
if: ${{ contains(github.event.pull_request.body, '- [x] Run automated nightly tests') }}
steps:
- run: |
Write-Host "Nightly tests"
13 changes: 2 additions & 11 deletions .github/workflows/check-tests-after-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,10 @@ name: "[Check] Run tests after push"
on:
push:
branches: '**'
pull_request:
types: [opened, reopened, edited]

jobs:
integration-tests:
runs-on: windows-2022
if: ${{ always() && !github.event.comment.body }}
steps:
- run: |
Write-Host "Integration test"
nightly-ui-tests:
runs-on: windows-2022
if: ${{ always() && contains(github.event.pull_request.body, '- [x] Run automated nightly tests') }}
steps:
- run: |
Write-Host "Nightly test"
Write-Host "Integration tests"

0 comments on commit 1fa6e20

Please sign in to comment.