Skip to content

Commit

Permalink
Added dummy workflow file for extended validation tests
Browse files Browse the repository at this point in the history
  • Loading branch information
qstokkink committed Oct 11, 2023
1 parent 7b9997a commit 4cf28ad
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/pr-comment-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: PR Validation Checker

on: issue_comment

jobs:
pr_commented:
name: Validate PR
if: ${{ github.event.issue.pull_request && startsWith(github.event.comment.body, 'validate') }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
version: [3.7, 3.8, 3.9, 3.10, 3.11]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }}
run: python --version

0 comments on commit 4cf28ad

Please sign in to comment.