Skip to content

Commit

Permalink
Change matrix and update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ddl-gabrielhaim committed Feb 21, 2024
1 parent 5f51b83 commit 83b0b46
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@ jobs:
fail-fast: false
matrix:
config:
- {os: macos-latest, r: 'release'}
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: ubuntu-latest, r: 'release'}
- {os: ubuntu-latest, r: 'oldrel-1'}
# - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
- {os: macos-latest, r: 'release', python: '3.10'}
- {os: ubuntu-latest, r: 'release', python: '3.10'}
- {os: ubuntu-latest, r: 'oldrel-1', python: '3.10'}
- {os: macos-latest, r: 'release', python: '3.11'}
- {os: ubuntu-latest, r: 'release', python: '3.11'}
- {os: ubuntu-latest, r: 'oldrel-1', python: '3.11'}
- {os: macos-latest, r: 'release', python: '3.12'}
- {os: ubuntu-latest, r: 'release', python: '3.12'}
- {os: ubuntu-latest, r: 'oldrel-1', python: '3.12'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
Expand All @@ -27,20 +33,20 @@ jobs:
DOMINO_DATASOURCE_PROXY_FLIGHT_HOST: grpc://localhost:8080
DOMINO_DATASOURCE_PROXY_HOST: http://localhost:8034
steps:
- uses: actions/checkout@v3
- 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 }}
# http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ matrix.config.python }}
- name: setup r-reticulate env
shell: Rscript {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: DominoDataR
Title: 'Domino Data R SDK'
Version: 0.2.3
Version: 0.2.5
Authors@R:
person("Gabriel", "Haim", , "[email protected]", role = c("aut", "cre"))
Description: A wrapper on top of the 'Domino Data Python SDK' library. It lets
Expand Down

0 comments on commit 83b0b46

Please sign in to comment.