Skip to content

Commit

Permalink
Fixing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
neuroimaginador committed Apr 25, 2023
1 parent 5c3a278 commit f96fb5b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- {os: macOS-latest, r: 'release', bioc: '3.17'}
- {os: windows-latest, r: 'release', bioc: '3.17'}
# - {os: ubuntu-16.04, bioc: '3.13', cont: "bioconductor/bioconductor_docker:devel", r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest", http-user-agent: "R/4.0.0 (ubuntu-16.04) R (4.0.0 x86_64-pc-linux-gnu x86_64 linux-gnu) on GitHub Actions" }
- {os: ubuntu-20.04, r: 'release', bioc: '3.17', rspm: "https://packagemanager.rstudio.com/all/__linux__/bionic/latest"}
- {os: ubuntu-20.04, r: 'release', bioc: '3.17', rspm: "https://packagemanager.rstudio.com/all/__linux__/focal/latest"}

env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
Expand All @@ -44,7 +44,7 @@ jobs:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}

- uses: r-lib/actions/setup-pandoc@v1
- uses: r-lib/actions/setup-pandoc@v2

- name: Query dependencies
run: |
Expand Down Expand Up @@ -76,8 +76,10 @@ jobs:
echo $rversion
## Save the info for the next job
echo "::set-output name=rversion::${rversion}"
echo "::set-output name=biocversionnum::${biocversionnum}"
echo "rversion=${rversion}" >> $GITHUB_OUTPUT
echo "biocversionnum=${biocversionnum}" >> $GITHUB_OUTPUT
# echo "::set-output name=rversion::${rversion}"
# echo "::set-output name=biocversionnum::${biocversionnum}"
shell:
bash {0}

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: r-lib/actions/setup-r@v2

- uses: r-lib/actions/setup-pandoc@v1
- uses: r-lib/actions/setup-pandoc@v2

- name: Query dependencies
run: |
Expand Down Expand Up @@ -55,8 +55,10 @@ jobs:
echo $rversion
## Save the info for the next job
echo "::set-output name=rversion::${rversion}"
echo "::set-output name=biocversionnum::${biocversionnum}"
echo "rversion=${rversion}" >> $GITHUB_OUTPUT
echo "biocversionnum=${biocversionnum}" >> $GITHUB_OUTPUT
# echo "::set-output name=rversion::${rversion}"
# echo "::set-output name=biocversionnum::${biocversionnum}"
shell:
bash {0}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-commands.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- uses: r-lib/actions/pr-fetch@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: r-lib/actions/setup-r@v1
- uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: Rscript -e 'install.packages("styler")'
- name: Style
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: r-lib/actions/setup-r@v2

- uses: r-lib/actions/setup-pandoc@v1
- uses: r-lib/actions/setup-pandoc@v2

- name: Query dependencies
run: |
Expand Down Expand Up @@ -59,8 +59,10 @@ jobs:
echo $rversion
## Save the info for the next job
echo "::set-output name=rversion::${rversion}"
echo "::set-output name=biocversionnum::${biocversionnum}"
echo "rversion=${rversion}" >> $GITHUB_OUTPUT
echo "biocversionnum=${biocversionnum}" >> $GITHUB_OUTPUT
# echo "::set-output name=rversion::${rversion}"
# echo "::set-output name=biocversionnum::${biocversionnum}"
shell:
bash {0}

Expand Down

0 comments on commit f96fb5b

Please sign in to comment.