From c2567d9cd55d239f5ccb6f76ca4fe367f07c2ba7 Mon Sep 17 00:00:00 2001 From: tonywu1999 Date: Fri, 21 Nov 2025 14:45:09 -0500 Subject: [PATCH] ci(build): Add automated dry run build when submitting a PR --- .github/workflows/dry-run-build.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/dry-run-build.yml diff --git a/.github/workflows/dry-run-build.yml b/.github/workflows/dry-run-build.yml new file mode 100644 index 0000000..a5c529a --- /dev/null +++ b/.github/workflows/dry-run-build.yml @@ -0,0 +1,18 @@ +name: Dry runs for PRs +on: + pull_request: + branches: [devel] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Setup R and Bioconductor + uses: grimbough/bioc-actions/setup-bioc@v1 + with: + bioc-version: devel + - name: Install dependencies + uses: r-lib/actions/setup-r-dependencies@v2 + - name: Build, Install, Check + uses: grimbough/bioc-actions/build-install-check@v1 \ No newline at end of file