Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
dieghernan committed Nov 28, 2024
1 parent e147489 commit 5380a0d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion R/utils-cff_read.R
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ get_gh_topics <- function(x) {
# fast the GH api limit (no auth)
# Need to auth to increase limit
# Try to get an stored token
token <- (Sys.getenv(c("GITHUB_PAT", "GITHUB_TOKEN")))
token <- c(Sys.getenv(c("GITHUB_TOKEN", "GITHUB_PAT")))
token <- token[!token %in% c(NA, NULL, "")][1]

ghtoken <- paste("token", token)
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
},
"isPartOf": "https://ropensci.org",
"keywords": ["attribution", "citation", "credit", "citation-files", "cff", "metadata", "r", "r-package", "citation-file-format", "rstats", "ropensci", "cran"],
"fileSize": "1624.972KB",
"fileSize": "1623.899KB",
"citation": [
{
"@type": "ScholarlyArticle",
Expand Down
3 changes: 0 additions & 3 deletions tests/testthat/test-methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,6 @@ test_that("head and tail", {
})

test_that("toBibtex", {
skip_on_os("mac")
skip_on_os("linux")
skip_on_os("solaris")
skip_on_cran()


Expand Down

0 comments on commit 5380a0d

Please sign in to comment.