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 ba8a8ac
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: ${{ always() && !github.event.comment.body }}
steps:
- run: |
Write-Host "Integration tests"
nightly-ui-tests:
runs-on: windows-2022
if: ${{ always() && github.event.issue.pull_request && contains(github.event.comment.body, '/run nightly tests') }}
steps:
- run: |
Write-Host "Nightly tests"

0 comments on commit ba8a8ac

Please sign in to comment.