Skip to content

Commit

Permalink
[tmp] stringfish
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleam committed Jun 26, 2024
1 parent 5f8b432 commit f241057
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,25 @@ jobs:
# this context and causes pak's solver to abort.
sed -i 's/testthat (.*/testthat,/' "$tdir/DESCRIPTION"
echo "NMREC_PKG=local::$tdir" >>$GITHUB_ENV
- name: Check out stringfish
if: matrix.config.label == 'oldest'
shell: bash
run: |
# stringfish wasn't added to MPN until 2020-06-25 (after
# oldest), and the minimum required version wasn't available
# until 2020-07-19.
tdir=$(mktemp -d)
git clone https://github.com/traversc/stringfish "$tdir"
git -C "$tdir" checkout 86c11e6ebb5cf70f1d74e4abfd0369f08499733a
echo "STRINGFISH_PKG=local::$tdir" >>$GITHUB_ENV
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::pkgdown
any::rcmdcheck
${{ env.MRGMISC_PKG }}
${{ env.NMREC_PKG }}
${{ env.STRINGFISH_PKG }}
upgrade: ${{ matrix.config.label == 'oldest' && 'FALSE' || 'TRUE' }}
- uses: r-lib/actions/check-r-package@v2
- name: Check pkgdown
Expand Down

0 comments on commit f241057

Please sign in to comment.