-
Notifications
You must be signed in to change notification settings - Fork 7
Transfert to inseefr #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
51b0213
Change authors and maintainer.
khaledlarbi 8514ef5
New minor version (new maintainer)
khaledlarbi 90baddb
Add GitHub action to check building on several platforms
khaledlarbi b567861
Add GitHub action to check building on several platforms
khaledlarbi 1cb0f7e
Merge branch 'InseeFr_transfer' of https://github.com/InseeFr/icarus …
khaledlarbi a2faecc
Update R-CMD-check.yaml
khaledlarbi cf0578e
Only workflow_dispatch on github action
khaledlarbi 46473f1
Changing GitHub Action to trigger on pull request
khaledlarbi 33f68a6
Update `cran-comments.md`
khaledlarbi 4398ecc
Enable manual and extended PR triggers for R-CMD-check
khaledlarbi 440965d
Skip test if `Rglpk` not installed
khaledlarbi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| *.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
| # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
| on: | ||
| pull_request: | ||
| types: | ||
| - opened | ||
| - synchronize | ||
| - reopened | ||
| workflow_dispatch: | ||
|
|
||
| name: R-CMD-check | ||
|
|
||
| jobs: | ||
| R-CMD-check: | ||
| runs-on: ${{ matrix.config.os }} | ||
|
|
||
| name: ${{ matrix.config.os }} (${{ matrix.config.r }}) | ||
|
|
||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| config: | ||
| - {os: macOS-latest, r: 'release'} | ||
| - {os: windows-latest, r: 'release'} | ||
| - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} | ||
| - {os: ubuntu-latest, r: 'release'} | ||
| - {os: ubuntu-latest, r: 'oldrel-1'} | ||
|
|
||
| env: | ||
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
| R_KEEP_PKG_SOURCE: yes | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
|
|
||
| - 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 }} | ||
| use-public-rspm: true | ||
|
|
||
| - uses: r-lib/actions/setup-r-dependencies@v2 | ||
| with: | ||
| extra-packages: any::rcmdcheck | ||
| needs: check | ||
|
|
||
| - uses: r-lib/actions/check-r-package@v2 | ||
| with: | ||
| upload-snapshots: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,5 +5,4 @@ | |
| ..Rcheck/ | ||
| docs | ||
| revdep/ | ||
| .github/ | ||
| *.Rcheck/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,10 +6,11 @@ Description: Provides user-friendly tools for calibration in survey sampling. | |
| 'icarus'. In addition to calibration (with linear, raking and logit methods), | ||
| 'icarus' features functions for calibration on tight bounds and penalized | ||
| calibration. | ||
| Version: 0.3.2 | ||
| Authors@R: c(person("Antoine Rebecq", role=c("aut","cre"), | ||
| email = "[email protected]")) | ||
| Maintainer: Antoine Rebecq <[email protected]> | ||
| Version: 0.3.3 | ||
| Authors@R: c(person("Antoine Rebecq", role=c("aut"), email = "[email protected]", comment = "Creator"), | ||
| person("Khaled", "Larbi", role = "cre", email = "[email protected]"), | ||
| person("Institut national de la statistique et des études économiques", role = "cph")) | ||
| Maintainer: Khaled Larbi <[email protected]> | ||
| Depends: | ||
| R (>= 3.1.1) | ||
| License: GPL-3 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| # icarus 0.3.3 | ||
|
|
||
| * New maintainer | ||
|
|
||
| # icarus 0.3.2 | ||
|
|
||
| ## Bug fixes | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,23 @@ | ||
| ## Test environments | ||
| * Ubuntu 20.04, R 4.3.0 | ||
| * win-builder (devel and release) | ||
| * Linux Ubuntu: R-oldrelease, R-release and R-devel | ||
| * Windows: R-oldrelease, R-release and R-devel | ||
| * MacOS: R-release | ||
|
|
||
| ## R CMD check results | ||
| There were no ERRORs or WARNINGs. | ||
|
|
||
| There was 1 NOTE: | ||
|
|
||
| * Possibly mis-spelled words in DESCRIPTION: | ||
| Reweights (2:23) | ||
| SAS (3:186) | ||
| logit (3:300) | ||
| ``` | ||
| * checking CRAN incoming feasibility ... [10s] NOTE | ||
| Maintainer: 'Khaled Larbi <[email protected]>' | ||
|
|
||
| New maintainer: | ||
| Khaled Larbi <[email protected]> | ||
| Old maintainer(s): | ||
| Antoine Rebecq <[email protected]> | ||
| ``` | ||
|
|
||
| These words aren't mis-spelled and text in DESCRIPTION didn't change since last submission. | ||
|
|
||
| ## Downstream dependencies | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add a warning to make sure test don't pass silently without being executed anywhere