Skip to content

Commit d7373d7

Browse files
committed
Make the option name more self explanatory. Add a comment clarifying how this will be used.
1 parent bfae257 commit d7373d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-bioc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ env:
4040
has_RUnit: 'false'
4141
cache-version: 'cache-v1'
4242
run_docker: 'false'
43-
latest_release: 'true'
43+
use_latest_bioc_release: 'true' ## Otherwise bioc-devel will be used.
4444

4545
jobs:
4646
bioc-config:
@@ -53,7 +53,7 @@ jobs:
5353
- id: set-bioc-matrix
5454
run: |
5555
bioc=$(curl -L https://bioconductor.org/config.yaml)
56-
if [[ "$latest_release" == "true" ]]; then
56+
if [[ "$use_latest_bioc_release" == "true" ]]; then
5757
echo "Finding the latest BioC release version and the corresponding R version"
5858
biocversion=$(echo "$bioc" | grep "release_version: " | grep -Eo "[0-9]{1}\.[0-9]{2}")
5959
rversion=$(echo "$bioc" | grep "r_version_associated_with_release: " | grep -Eo "[0-9]{1}\.[0-9]{1}")

0 commit comments

Comments
 (0)