Skip to content

Commit

Permalink
make test accept 2.7.*, upgrade GHA to not pull qpdf
Browse files Browse the repository at this point in the history
the qpdf issue was fixed a few days ago in r-lib/actions
  • Loading branch information
eddelbuettel committed Jan 13, 2022
1 parent 525e2c7 commit 0d67bef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

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

- uses: r-lib/actions/setup-r@v1
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
Expand Down
2 changes: 1 addition & 1 deletion src/test-C-API.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ context("Test C API")
expect_true(res.size() == 3);
expect_true(res[0] == 2);
expect_true(res[1] == 7);
expect_true(res[2] == 0);
expect_true(res[2] >= 0);
}

test_that("Test exposed NLopt C code using example from NLopt tutorial")
Expand Down

0 comments on commit 0d67bef

Please sign in to comment.