Skip to content

Commit c4eb920

Browse files
committed
New design of Modia3D
1 parent 4678d3b commit c4eb920

File tree

464 files changed

+1568544
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

464 files changed

+1568544
-2
lines changed

.codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
comment: false

.github/workflows/TagBot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1
1013
with:
1114
token: ${{ secrets.GITHUB_TOKEN }}
15+
16+

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# exclude following files
2+
docs/build/
3+
docs/site/
4+
.vscode/

.travis.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
## Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 1.1
8+
9+
# - nightly
10+
11+
notifications:
12+
email: true
13+
14+
git:
15+
depth: 99999999
16+
17+
## uncomment the following lines to allow failures on nightly julia
18+
## (tests will run but not make your overall status red)
19+
#matrix:
20+
# allow_failures:
21+
# - julia: nightly
22+
23+
## uncomment and modify the following lines to manually install system packages
24+
#addons:
25+
# apt: # apt-get for linux
26+
# packages:
27+
# - gfortran
28+
#before_script: # homebrew for mac
29+
# - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
30+
31+
## uncomment the following lines to override the default test script
32+
#script:
33+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Modia3D"); Pkg.test("Modia3D"; coverage=true)'
34+
after_success:
35+
# push coverage results to Coveralls
36+
# - julia -e 'cd(Pkg.dir("Modia3D")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
37+
# push coverage results to Codecov
38+
- julia -e 'using Pkg; cd(Pkg.dir("Modia3D")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016-2018: DLR Institute of System Dynamics and Control
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)