Skip to content

Commit

Permalink
Added CI workflow update to fix error in Omnipath.
Browse files Browse the repository at this point in the history
  • Loading branch information
enblacar committed Aug 20, 2024
1 parent 709734d commit 30f6bcc
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
pull_request:
branches: [main, master]

name: R-CMD-check
name: R-CMD-check.yaml

permissions: read-all

jobs:
R-CMD-check:
Expand All @@ -18,13 +20,11 @@ jobs:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: macos-latest, r: '4.2.0'}
- {os: windows-latest, r: '4.2.0'}
- {os: ubuntu-latest, r: '4.2.0'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -34,6 +34,10 @@ jobs:
- uses: actions/checkout@v4

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

- name: Install libglpk40
if: ${{ matrix.config.os == 'ubuntu-latest' }}
run: sudo apt-get install -y libglpk40

- uses: r-lib/actions/setup-r@v2
with:
Expand All @@ -49,3 +53,4 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

0 comments on commit 30f6bcc

Please sign in to comment.