From fb99eec20b146425a3f1334bd89b171ec2ce311c Mon Sep 17 00:00:00 2001 From: tonywu1999 Date: Fri, 17 Jan 2025 18:18:15 -0500 Subject: [PATCH] add dry run build --- .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