-
-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into enh/precalculate-barometric-height
- Loading branch information
Showing
13 changed files
with
1,344 additions
and
151 deletions.
There are no files selected for viewing
This file contains 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,22 +1,2 @@ | ||
# Set to true to add reviewers to PRs | ||
addReviewers: true | ||
|
||
# Set to 'author' to add PR's author as a assignee | ||
addAssignees: author | ||
|
||
# A list of reviewers to be added to PRs (GitHub user name) | ||
reviewers: | ||
- Gui-FernandesBR | ||
- giovaniceotto | ||
- MateusStano | ||
- phmbressan | ||
|
||
# A number of reviewers added to the PR | ||
# Set 0 to add all the reviewers (default: 0) | ||
numberOfReviewers: 0 | ||
|
||
# A list of keywords to be skipped the process if PR's title include it | ||
skipKeywords: | ||
- wip | ||
- work in progress | ||
- draft |
This file contains 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,35 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
# basic | ||
target: auto | ||
threshold: 1% | ||
base: auto | ||
flags: | ||
- unit | ||
paths: | ||
- "rocketpy" | ||
# advanced settings | ||
branches: | ||
- master | ||
- develop | ||
if_ci_failed: error #success, failure, error, ignore | ||
informational: false | ||
only_pulls: false | ||
patch: | ||
default: | ||
# basic | ||
target: auto | ||
threshold: 1% | ||
base: auto | ||
# advanced | ||
branches: | ||
- master | ||
- develop | ||
if_ci_failed: error #success, failure, error, ignore | ||
only_pulls: false | ||
flags: | ||
- "unit" | ||
paths: | ||
- "rocketpy" |
This file contains 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 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 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,29 @@ | ||
name: Upload to Codecov | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
codecov_token: | ||
required: true | ||
type: string | ||
os: | ||
required: true | ||
type: string | ||
python: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
upload: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Upload coverage report to Codecov | ||
uses: codecov/codecov-action@v3 | ||
with: | ||
token: ${{ inputs.codecov_token }} | ||
directory: ./coverage/reports/ | ||
env_vars: OS,PYTHON | ||
files: ./coverage.xml, ./rocketpy/coverage.xml | ||
flags: unittests | ||
name: codecov-umbrella | ||
verbose: true |
This file contains 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 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 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 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.