From 69010d99a50c618928c164a3b867cbf9e5bae09b Mon Sep 17 00:00:00 2001 From: leonawicz Date: Sun, 17 Sep 2023 14:16:00 -0600 Subject: [PATCH] Trying again. --- .github/workflows/R-CMD-check.yaml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 1d11b2e..dd70f99 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -19,9 +19,9 @@ jobs: matrix: config: - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} - - {os: ubuntu-latest, r: 'release'} - - {os: ubuntu-latest, r: 'oldrel-1'} - - {os: macos-latest, r: 'release'} + # - {os: ubuntu-latest, r: 'release'} + # - {os: ubuntu-latest, r: 'oldrel-1'} + # - {os: macos-latest, r: 'release'} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} @@ -29,15 +29,11 @@ jobs: steps: - name: Install Lilypond on Linux - if: matrix.os == 'ubuntu-latest' + if: runner.os == 'Linux' run: | sudo apt update -y sudo apt install -y libpng-dev lilypond - - name: Install Lilypond on Mac - if: matrix.os == 'macos-latest' - run: | - brew install lilypond - uses: actions/checkout@v3