Skip to content

Commit

Permalink
update to most recent checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
ThierryO committed Jan 25, 2022
1 parent 01cd4f6 commit 8bee128
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check_on_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ jobs:
check-package:
runs-on: ubuntu-latest
name: "check package"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }}
steps:
- uses: inbo/actions/check_pkg@master
with:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }}
token: ${{ secrets.PAT }}
6 changes: 3 additions & 3 deletions .github/workflows/check_on_different_r_os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-20.04, r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-18.04, r: 'oldrel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-20.04, r: 'oldrel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}

env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Check
env:
_R_CHECK_CRAN_INCOMING_: false
run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check")
run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "error", check_dir = "check")
shell: Rscript {0}

- name: Show testthat output
Expand All @@ -95,4 +95,4 @@ jobs:
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check
retention-days: 14
retention-days: 5
7 changes: 4 additions & 3 deletions .github/workflows/check_on_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
check-package:
runs-on: ubuntu-latest
name: "check package"
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }}
steps:
- uses: inbo/actions/check_pkg@master
with:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
ORCID_TOKEN: ${{ secrets.ORCID_TOKEN }}
token: ${{ secrets.pat }}
token: ${{ secrets.PAT }}
8 changes: 4 additions & 4 deletions _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ navbar:
- text: Contributing
href: CONTRIBUTING.html
right:
- icon: fa-github fa-lg
- icon: "fa fa-github"
href: https://github.com/ropensci/git2rdata
- icon: fa-twitter fa-lg
- icon: "fa fa-twitter"
href: https://twitter.com/INBOVlaanderen
- icon: fa-facebook fg-lg
- icon: "fa fa-facebook"
href: https://www.facebook.com/pg/INBOVlaanderen

reference:
Expand All @@ -44,5 +44,5 @@ authors:
Thierry Onkelinx:
href: "https://www.muscardinus.be"
Research Institute for Nature and Forest:
href: "https://www.inbo.be/en"
href: "https://www.vlaanderen.be/inbo/en-gb"
html: "<img src='https://ropensci.github.io/git2rdata/reference/figures/logo-en.png' height=24>"
37 changes: 33 additions & 4 deletions pkgdown/extra.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body {
background-color: #efefef;
background-color: #f5f5f5;
color: #5e5e5e;
background-image: url('reference/figures/background-pattern.png');
font-family: FlandersArtSans-Light, Verdana, Arial, sans-serif;
Expand All @@ -13,14 +13,13 @@ a {
color: #c04384;
}
a:hover {
color: #c2c444;
color: #337ab7;
}


.navbar,
.label-default,
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
background-color: #c04384;
background-color: #356196;
}

.navbar-default .navbar-link,
Expand Down Expand Up @@ -61,3 +60,33 @@ code.sourceCode.diff span.va {
background-color: #E4E517;
font-weight: bold;
}

/*selection color*/
::selection {
background: #c04384;
color: #fff;
}
::-moz-selection {
background: #c04384;
color: #fff;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover{
color: #337ab7;
background: #fff;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
color: #337ab7;
background: #fff;
}

.navbar-default .navbar-nav>li>a:hover{
color: #337ab7;
background: #fff;
}

.dropdown-menu>li>a:hover{
color: #fff;
background: #337ab7;
}

0 comments on commit 8bee128

Please sign in to comment.