Skip to content

Commit

Permalink
Update ci.yml (#12)
Browse files Browse the repository at this point in the history
* Update ci.yml

* change comment

* remove comment

Co-authored-by: Michael Schlottke-Lakemper <[email protected]>

* rename documentation job

---------

Co-authored-by: Michael Schlottke-Lakemper <[email protected]>
  • Loading branch information
patrickersing and sloede authored Jan 11, 2024
1 parent 2667a3a commit c1cad34
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}

jobs:
build:
build-documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,14 @@ jobs:
- run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)'
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- name: Run tests without coverage
uses: julia-actions/julia-runtest@v1
with:
coverage: false
- name: Run tests with coverage
uses: julia-actions/julia-runtest@v1
with:
coverage: true
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion src/TrixiShallowWater.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module TrixiShallowWater

using Trixi: Trixi

# Write your package code here.
# Write your package code here
foo() = true
bar() = false
baz() = Trixi.examples_dir()
Expand Down

0 comments on commit c1cad34

Please sign in to comment.