Skip to content

Commit

Permalink
Change some things about the checks (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksanderbl29 authored Dec 5, 2024
2 parents e578247 + 594ba15 commit 9240ead
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 4 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/R-CMD-check-as-cran.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: main
pull_request:
workflow_dispatch:
schedule:
- cron: "30 17 * * 6"

name: CRAN check

permissions: read-all

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: true
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-24.04, r: 'release'}

env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-pandoc@v2

- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 3
extra-packages: |
any::rcmdcheck
needs: |
check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
4 changes: 2 additions & 2 deletions .github/workflows/R-CMD-check-real-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
schedule:
- cron: '0 12 * * 1'

name: R-CMD-check
name: R-CMD-check with real requests

jobs:
R-CMD-check:
Expand All @@ -16,7 +16,7 @@ jobs:
name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
fail-fast: true
matrix:
config:
- {os: ubuntu-latest, r: 'release'}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
# fail-fast: true
fail-fast: false
fail-fast: true
matrix:
config:
- {os: macos-latest, r: 'release'}
Expand Down

0 comments on commit 9240ead

Please sign in to comment.