From 4cf28adeb1873b537d7e8f2bc8d6109e771731c9 Mon Sep 17 00:00:00 2001 From: Quinten Stokkink Date: Wed, 11 Oct 2023 14:02:37 +0200 Subject: [PATCH] Added dummy workflow file for extended validation tests --- .github/workflows/pr-comment-validate.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr-comment-validate.yml diff --git a/.github/workflows/pr-comment-validate.yml b/.github/workflows/pr-comment-validate.yml new file mode 100644 index 000000000..ea3fb6f96 --- /dev/null +++ b/.github/workflows/pr-comment-validate.yml @@ -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