Skip to content

Commit

Permalink
adding better job names, fixing issue with not running code in bash
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwesley committed Nov 25, 2024
1 parent 7507bc5 commit 22c3283
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ defaults:

jobs:
R-CMD-check:
name: ${{ matrix.os }} (${{ matrix.config.r }})
name: >
${{ matrix.os == 'ubuntu-latest' && 'Ubuntu' ||
matrix.os == 'windows-latest' && 'Windows' ||
matrix.os == 'macOS-latest' && 'MacOS' }}
(R-${{ matrix.r }})
timeout-minutes: 30
strategy:
fail-fast: false
Expand Down Expand Up @@ -52,6 +56,7 @@ jobs:

- name: Install qpdf (macOS only)
if: runner.os == 'macOS'
shell: bash
run: brew install qpdf

- name: Install system dependencies
Expand Down

0 comments on commit 22c3283

Please sign in to comment.