From 3572faeeeaa1a5497eaebcb2775b18bd63cad540 Mon Sep 17 00:00:00 2001 From: 2205u Date: Tue, 25 Jun 2024 01:45:18 +0530 Subject: [PATCH] workflow: add shuttle-run action for PRs --- .github/workflows/shuttle-run.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/shuttle-run.yml diff --git a/.github/workflows/shuttle-run.yml b/.github/workflows/shuttle-run.yml new file mode 100644 index 0000000..7fdc5d6 --- /dev/null +++ b/.github/workflows/shuttle-run.yml @@ -0,0 +1,14 @@ +name: shuttle-run +on: + pull_request: + branches: [ "main", "develop" ] + +jobs: + deploy-project: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Run shuttle project locally. + uses: denytwice/shuttle-run@v1.0