From 2a0d7ecc72d6cc3ee1ef299f7775679d4714c1ea Mon Sep 17 00:00:00 2001 From: patrickersing Date: Mon, 15 Jan 2024 15:57:17 +0100 Subject: [PATCH 1/4] add uncovered function --- src/TrixiShallowWater.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TrixiShallowWater.jl b/src/TrixiShallowWater.jl index 87b673f..e6e0cb4 100644 --- a/src/TrixiShallowWater.jl +++ b/src/TrixiShallowWater.jl @@ -6,5 +6,6 @@ using Trixi: Trixi foo() = true bar() = false baz() = Trixi.examples_dir() +foo2() = true -end +end \ No newline at end of file From a39a0766e88622a54e738075bf73e6db9dbf0e50 Mon Sep 17 00:00:00 2001 From: patrickersing Date: Mon, 15 Jan 2024 16:38:45 +0100 Subject: [PATCH 2/4] update ci --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0295b0..ebcffe8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,6 +65,8 @@ jobs: - uses: codecov/codecov-action@v3 with: files: lcov.info + fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }} - uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} From 790b1064d0724100f0df01ca7b940c1fe8644803 Mon Sep 17 00:00:00 2001 From: patrickersing Date: Mon, 15 Jan 2024 17:01:03 +0100 Subject: [PATCH 3/4] change comment --- src/TrixiShallowWater.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TrixiShallowWater.jl b/src/TrixiShallowWater.jl index e6e0cb4..f48d5d7 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() From 3819890ef98b156d76d7af1a8af86d8a26afec03 Mon Sep 17 00:00:00 2001 From: patrickersing Date: Mon, 15 Jan 2024 17:16:48 +0100 Subject: [PATCH 4/4] remove cache --- .github/workflows/ci.yml | 1 - src/TrixiShallowWater.jl | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebcffe8..7712dda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,6 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - run: julia -e 'using InteractiveUtils; versioninfo(verbose=true)' - - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - name: Run tests without coverage uses: julia-actions/julia-runtest@v1 diff --git a/src/TrixiShallowWater.jl b/src/TrixiShallowWater.jl index f48d5d7..e6e0cb4 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()