Skip to content

Commit

Permalink
ci debugging (#23)
Browse files Browse the repository at this point in the history
* let setup-r decide on R version
* version bump
  • Loading branch information
vineetbansal committed Apr 6, 2024
1 parent ce4fd38 commit 890b3f2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
17 changes: 4 additions & 13 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,17 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
R: [ '4.1.0', '4.1.1' ]
fail-fast: false
runs-on: ${{ matrix.os }}
name: R ${{ matrix.R }} ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.R }}

- name: Install system dependencies
run: sudo apt install build-essential libxml2-dev libssl-dev texinfo texlive-latex-base libcurl4-openssl-dev libcairo2-dev texlive-fonts-extra qpdf
run: sudo apt install build-essential libxml2-dev libssl-dev texinfo texlive-latex-base libcurl4-openssl-dev libcairo2-dev texlive-fonts-extra qpdf libharfbuzz-dev libfribidi-dev

- name: Install devtools
run: Rscript -e "install.packages('devtools', dependencies=T, repos='https://cloud.r-project.org')"
Expand All @@ -39,17 +36,14 @@ jobs:
strategy:
matrix:
os: [ macOS-latest ]
R: [ '4.1.0', '4.1.1' ]
fail-fast: false
runs-on: ${{ matrix.os }}
name: R ${{ matrix.R }} ${{ matrix.os }}

steps:
- uses: actions/checkout@master

- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.R }}

- name: Install Homebrew
if: false
Expand All @@ -72,17 +66,14 @@ jobs:
strategy:
matrix:
os: [ windows-latest ]
R: [ '4.1.0', '4.1.1' ]
fail-fast: false
runs-on: ${{ matrix.os }}
name: R ${{ matrix.R }} ${{ matrix.os }}

steps:
- uses: actions/checkout@master

- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.R }}

- name: Install MikTex
if: false
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pyMTurkR
Type: Package
Title: A Client for the 'MTurk' Requester API
Version: 1.1.5
Version: 1.1.6
Authors@R: c(person("Tyler", "Burleigh",
role = "aut",
email = "[email protected]",
Expand Down

0 comments on commit 890b3f2

Please sign in to comment.