diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index 8780f1e..c8f0ed5 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -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 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8dc9958..a0295b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/src/TrixiShallowWater.jl b/src/TrixiShallowWater.jl index b72b67e..87b673f 100644 --- a/src/TrixiShallowWater.jl +++ b/src/TrixiShallowWater.jl @@ -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()