Skip to content

Commit cf1817b

Browse files
authored
Merge pull request #529 from GoekeLab/update_github_actions_v4
update github actions to check push and PR to devel_pre and devel_pre_v4 for v4
2 parents f482b6a + 8c9af92 commit cf1817b

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/check-bioc.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
on:
2424
push:
25-
branches: [main, devel]
25+
branches: [devel, devel_pre, devel_pre_v4]
2626
pull_request:
27-
branches: [main, devel]
27+
branches: [devel, devel_pre, devel_pre_v4]
2828

2929
name: R-CMD-check-bioc
3030

@@ -54,8 +54,8 @@ jobs:
5454
fail-fast: false
5555
matrix:
5656
config:
57-
- { os: ubuntu-latest, r: '4.4.2', bioc: '3.20', cont: "bioconductor/bioconductor_docker:RELEASE_3_20", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
58-
- { os: macOS-latest, r: '4.4.2', bioc: '3.20'}
57+
- { os: ubuntu-latest, r: '4.5.2', bioc: '3.22', cont: "bioconductor/bioconductor_docker:RELEASE_3_22", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
58+
- { os: macOS-latest, r: '4.5.2', bioc: '3.22'}
5959
## - { os: windows-latest, r: '4.4', bioc: '3.20'}
6060
## Check https://github.com/r-lib/actions/tree/master/examples
6161
## for examples using the http-user-agent
@@ -107,16 +107,16 @@ jobs:
107107
uses: actions/cache@v4
108108
with:
109109
path: ${{ env.R_LIBS_USER }}
110-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE-r-4.4.2-${{ hashFiles('.github/depends.Rds') }}
111-
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE-r-4.4.2-
110+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE-r-4.5.2-${{ hashFiles('.github/depends.Rds') }}
111+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE-r-4.5.2-
112112

113113
- name: Cache R packages on Linux
114114
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
115115
uses: actions/cache@v4
116116
with:
117117
path: /home/runner/work/_temp/Library
118-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-4.4.2-${{ hashFiles('.github/depends.Rds') }}
119-
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-4.4.2-
118+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-4.5.2-${{ hashFiles('.github/depends.Rds') }}
119+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-devel-r-4.5.2-
120120

121121
- name: Install Linux system dependencies
122122
if: runner.os == 'Linux'
@@ -339,7 +339,7 @@ jobs:
339339
if: failure()
340340
uses: actions/upload-artifact@v4
341341
with:
342-
name: ${{ runner.os }}-biocversion-RELEASE-r-4.4.2-results
342+
name: ${{ runner.os }}-biocversion-RELEASE-r-4.5.2-results
343343
path: check
344344

345345
- uses: docker/build-push-action@v1

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches:
6-
- devel
5+
branches: [devel, devel_pre, devel_pre_v4]
6+
77
pull_request:
8-
branches: [main, devel]
8+
branches: [devel, devel_pre, devel_pre_v4]
99

1010
name: lint
1111

.github/workflows/test-coverage.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
33
on:
44
push:
5-
branches:
6-
- devel
5+
branches: [devel, devel_pre, devel_pre_v4]
6+
77
pull_request:
8-
branches: [main, devel]
8+
branches: [devel, devel_pre, devel_pre_v4]
99

1010
name: test-coverage
1111

0 commit comments

Comments
 (0)