From 6533e100b41ea8ef453629c3bf6739ad4157d743 Mon Sep 17 00:00:00 2001 From: Jon Waldstein Date: Wed, 15 May 2024 14:36:48 -0400 Subject: [PATCH] chore: add unit tests workflow --- .github/workflows/unit-tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/unit-tests.yml diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml new file mode 100644 index 0000000..18669ea --- /dev/null +++ b/.github/workflows/unit-tests.yml @@ -0,0 +1,14 @@ +name: Unit Tests + +on: + push: + pull_request: + workflow_call: # Allows you to use this workflow as part of another workflow + workflow_dispatch: # Allows you to run this workflow manually from the Actions tab + +jobs: + build: + uses: impress-org/givewp-github-actions/.github/workflows/addon-tests.yml@master + with: + addon_slug: give-divi + givewp_branch: develop