Skip to content

Commit

Permalink
GHA: test on Alpine / musl (#41)
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
gaborcsardi authored Nov 2, 2024
1 parent 42948c2 commit 1a0c537
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/musl.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# 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
#
# NOTE: This workflow is overkill for most R packages and
# check-standard.yaml is likely a better choice.
# usethis::use_github_action("check-standard") will install it.
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
workflow_dispatch:

name: musl.yaml

permissions: read-all

jobs:
R-CMD-check:
name: Alpine 3.20
runs-on: ubuntu-latest
container:
image: ghcr.io/r-hub/r-minimal/r-minimal:latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
install-pandoc: false
install-quarto: false

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")'

0 comments on commit 1a0c537

Please sign in to comment.