Skip to content

Commit

Permalink
another github actions commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mduncans committed Aug 1, 2024
1 parent b3045bf commit d2525f2
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/RunChecks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
r-version: ${{ matrix.config.r }}
use-public-rspm: true

- name: Add mocked binaries to PATH
run: |
mkdir -p $HOME/bin
cp inst/bin/sinfo $HOME/bin/sinfo
cp inst/bin/sacct $HOME/bin/sacct
echo "$HOME/bin" >> $GITHUB_PATH
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
Expand All @@ -43,8 +50,3 @@ jobs:
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
run: |
cp inst/bin/sinfo /usr/local/bin/sinfo
chmod +x /usr/local/bin/sinfo
cp inst/bin/sacct /usr/local/bin/sacct
chmod +x /usr/local/bin/sacct

0 comments on commit d2525f2

Please sign in to comment.