Skip to content

Commit

Permalink
Fix basic.yml 16
Browse files Browse the repository at this point in the history
  • Loading branch information
nalinigans committed May 18, 2023
1 parent 5902b73 commit a764cb1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,15 @@ jobs:
GENOMICSDB_TARBALL: ${{ env.GENOMICSDB_HOME }}_${{ env.GENOMICSDB_BRANCH }}.tar
run: tar -xvf ${GENOMICSDB_TARBALL} -C $(dirname $GENOMICSDB_HOME)

- name: Set up R ${{ matrix.r-version }}
- name: Setup R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.r-version }}

- name: Create .Renviron
run: echo "R_LIBS=$R_LIBS" > .Renviron
- name: Setup R_LIBS
run: |
mkdir -p $R_LIBS
echo "R_LIBS=$R_LIBS" > .Renviron
- name: Cache installed Packages
uses: actions/cache@v3
Expand Down

0 comments on commit a764cb1

Please sign in to comment.