-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply COPIERTemplate 0.5.3 with minimum optional questions
1 parent
11e9c7c
commit d549e17
Showing
20 changed files
with
971 additions
and
761 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
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,11 @@ | ||
# Changes here will be overwritten by Copier | ||
AnswerStrategy: minimum | ||
AuthorEmail: fatkasuvayu+linux@gmail.com | ||
AuthorName: Suvayu Ali | ||
JuliaMinVersion: '1.6' | ||
License: Apache-2.0 | ||
PackageName: TulipaIO | ||
PackageOwner: TulipaEnergy | ||
PackageUUID: 7b3808b7-0819-42d4-885c-978ba173db11 | ||
_commit: v0.5.3 | ||
_src_path: https://github.com/abelsiqueira/COPIERTemplate.jl |
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,7 @@ | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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,52 @@ | ||
name: Reusable test | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
version: | ||
required: false | ||
type: string | ||
default: "1" | ||
os: | ||
required: false | ||
type: string | ||
default: ubuntu-latest | ||
arch: | ||
required: false | ||
type: string | ||
default: x64 | ||
allow_failure: | ||
required: false | ||
type: boolean | ||
default: false | ||
run_codecov: | ||
required: false | ||
type: boolean | ||
default: false | ||
secrets: | ||
codecov_token: | ||
required: true | ||
|
||
jobs: | ||
test: | ||
name: Julia ${{ inputs.version }} - ${{ inputs.os }} - ${{ inputs.arch }} - ${{ github.event_name }} | ||
runs-on: ${{ inputs.os }} | ||
continue-on-error: ${{ inputs.allow_failure }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ inputs.version }} | ||
arch: ${{ inputs.arch }} | ||
- name: Use Julia cache | ||
uses: julia-actions/cache@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-runtest@v1 | ||
- uses: julia-actions/julia-processcoverage@v1 | ||
if: ${{ inputs.run_codecov }} | ||
- uses: codecov/codecov-action@v4 | ||
if: ${{ inputs.run_codecov }} | ||
with: | ||
file: lcov.info | ||
token: ${{ secrets.codecov_token }} |
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,25 @@ | ||
# [Contributing guidelines](@id contributing) | ||
|
||
First of all, thanks for the interest! | ||
|
||
We welcome all kinds of contribution, including, but not limited to code, documentation, examples, configuration, issue creating, etc. | ||
|
||
Be polite and respectful, and follow the code of conduct. | ||
|
||
## Bug reports and discussions | ||
|
||
If you think you found a bug, feel free to open an [issue](https://github.com/TulipaEnergy/TulipaIO.jl/issues). | ||
Focused suggestions and requests can also be opened as issues. | ||
Before opening a pull request, start an issue or a discussion on the topic, please. | ||
|
||
## Working on an issue | ||
|
||
If you found an issue that interests you, comment on that issue what your plans are. | ||
If the solution to the issue is clear, you can immediately create a pull request (see below). | ||
Otherwise, say what your proposed solution is and wait for a discussion around it. | ||
|
||
!!! tip | ||
Feel free to ping us after a few days if there are no responses. | ||
|
||
If your solution involves code (or something that requires running the package locally), check the [developer documentation](90-developer.md). | ||
Otherwise, you can use the GitHub interface directly to create your pull request. |
Oops, something went wrong.