From 0dedd42edde1d71d558ffa8273394236410840be Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Fri, 21 May 2021 16:45:30 +0200 Subject: [PATCH] correct paths --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66126dc8..45a723a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,8 +73,8 @@ jobs: - name: Run Graphical test run: | $TESTCMD --project -e 'using Pkg; Pkg.test(coverage=true);' - $TESTCMD -e 'using Pkg; Pkg.activate(tmpdir()); Pkg.develop(path="."); Pkg.add("StatsPlots"); Pkg.test("StatsPlots");' - $TESTCMD -e 'using Pkg; Pkg.activate(tmpdir()); Pkg.develop(path="."); Pkg.add("GraphRecipes"); Pkg.test("GraphRecipes");' + $TESTCMD -e 'using Pkg; Pkg.activate(tempdir()); Pkg.develop(path=abspath(".")); Pkg.add("StatsPlots"); Pkg.test("StatsPlots");' + $TESTCMD -e 'using Pkg; Pkg.activate(tempdir()); Pkg.develop(path=abspath(".")); Pkg.add("GraphRecipes"); Pkg.test("GraphRecipes");' - name: Codecov uses: julia-actions/julia-uploadcodecov@latest