Skip to content

Commit

Permalink
more extensive R testing, only test windows on Julia latest
Browse files Browse the repository at this point in the history
  • Loading branch information
palday authored Aug 9, 2023
1 parent f53efe1 commit bb931b0
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
name: Julia ${{ matrix.version }} - R ${{ matrix.R }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
Expand All @@ -19,7 +19,11 @@ jobs:
- '1.6'
- '1'
- nightly
os: [ubuntu-latest, windows-latest]
R:
- 'release'
- '4'
- '3'
os: [ubuntu-latest]
arch: [x64]
experimental: [false]
include:
Expand All @@ -28,10 +32,12 @@ jobs:
arch: x64
version: 1
experimental: false
# - os: windows-latest
# arch: x64
# version: 1
# experimental: false
R: 'release'
- os: windows-latest
arch: x64
version: 1
experimental: false
R: 'release'
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand All @@ -42,6 +48,7 @@ jobs:
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
r-version: ${{ matrix.R }}
- run: echo "LD_LIBRARY_PATH=$(R RHOME)/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
if: matrix.os == 'ubuntu-latest'
- uses: julia-actions/julia-buildpkg@v1
Expand Down

0 comments on commit bb931b0

Please sign in to comment.