Skip to content

Commit

Permalink
Testy test
Browse files Browse the repository at this point in the history
  • Loading branch information
q71114 committed Jul 26, 2024
1 parent cc3fc44 commit 351447d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check-tests-after-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "[Check] Run tests after push"

on:
push:
branches: '**'
issue_comment:
types: [created, edited, deleted]

jobs:
integration-tests:
runs-on: windows-2022
if: !github.event.comment.body
steps:
- run: |
Write-Host "Integration Tests"
nightly-ui-tests:
runs-on: windows-2022
if: github.event.issue.pull_request && contains(github.event.comment.body, '/run nightly tests')
steps:
- run: |
Write-Host "Nightly Tests"

0 comments on commit 351447d

Please sign in to comment.