From 8ad1b0de783fa49ae54b652583989f8d07a1937f Mon Sep 17 00:00:00 2001 From: stevencartavia Date: Mon, 10 Jun 2024 22:24:11 -0600 Subject: [PATCH] workflow to run test for PRs on main --- .github/workflows/pull_request.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/pull_request.yaml diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml new file mode 100644 index 0000000..0afa184 --- /dev/null +++ b/.github/workflows/pull_request.yaml @@ -0,0 +1,12 @@ +--- +name: Workflow - Pull Request + +on: + pull_request: + branches: + - main + +jobs: + tests: + name: Run tests + uses: ./.github/workflows/test.yml \ No newline at end of file