Skip to content

Commit

Permalink
simplify config a little to debug
Browse files Browse the repository at this point in the history
ref #330
  • Loading branch information
wibeasley committed Nov 4, 2021
1 parent f38046b commit 896d6cf
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/check-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ jobs:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

strategy:
fail-fast: false
matrix:
config:
- {os: ubuntu-latest, r: 'release'}
- {os: macOS-latest, r: 'release', http-user-agent: 'release', ONLY_READ_TESTS: true}
# - {os: macOS-latest, r: 'release', http-user-agent: 'release', ONLY_READ_TESTS: true}
# - {os: windows-latest, r: 'release'}
# os: [ubuntu-latest]
# include:
Expand All @@ -37,17 +38,17 @@ jobs:
- uses: r-lib/actions/setup-r@v1
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
ONLY_READ_TESTS: ${{ matrix.config.ONLY_READ_TESTS }}
# http-user-agent: ${{ matrix.config.http-user-agent }}
# ONLY_READ_TESTS: ${{ matrix.config.ONLY_READ_TESTS }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v1
with:
extra-packages: rcmdcheck

- uses: r-lib/actions/check-r-package@v1
with:
ONLY_READ_TESTS: ${{ matrix.config.ONLY_READ_TESTS }}
# with:
# ONLY_READ_TESTS: ${{ matrix.config.ONLY_READ_TESTS }}

- name: Show testthat output
if: always()
Expand Down

0 comments on commit 896d6cf

Please sign in to comment.