We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfae257 commit d7373d7Copy full SHA for d7373d7
.github/workflows/check-bioc.yml
@@ -40,7 +40,7 @@ env:
40
has_RUnit: 'false'
41
cache-version: 'cache-v1'
42
run_docker: 'false'
43
- latest_release: 'true'
+ use_latest_bioc_release: 'true' ## Otherwise bioc-devel will be used.
44
45
jobs:
46
bioc-config:
@@ -53,7 +53,7 @@ jobs:
53
- id: set-bioc-matrix
54
run: |
55
bioc=$(curl -L https://bioconductor.org/config.yaml)
56
- if [[ "$latest_release" == "true" ]]; then
+ if [[ "$use_latest_bioc_release" == "true" ]]; then
57
echo "Finding the latest BioC release version and the corresponding R version"
58
biocversion=$(echo "$bioc" | grep "release_version: " | grep -Eo "[0-9]{1}\.[0-9]{2}")
59
rversion=$(echo "$bioc" | grep "r_version_associated_with_release: " | grep -Eo "[0-9]{1}\.[0-9]{1}")
0 commit comments