From a10a5ed15ba03083f5be851cd508adebe3fd4dd6 Mon Sep 17 00:00:00 2001 From: Spencer Wilson Date: Mon, 26 Aug 2024 13:07:34 -0400 Subject: [PATCH] Add PR tests workflow that calls the basic checks Signed-off-by: Spencer Wilson --- .github/workflows/pr-tests.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/pr-tests.yml diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml new file mode 100644 index 000000000..77dc2f1c4 --- /dev/null +++ b/.github/workflows/pr-tests.yml @@ -0,0 +1,10 @@ +name: Pull request tests + +permissions: + contents: read + +on: [pull_request, workflow_dispatch] + +jobs: + basic-checks: + uses: ./.github/workflows/basic.yml