From 875c91f0ced21d73033da913eabecf62d96d96f5 Mon Sep 17 00:00:00 2001 From: Erik Faulhaber <44124897+efaulhaber@users.noreply.github.com> Date: Tue, 23 Jan 2024 15:15:20 +0100 Subject: [PATCH] Hopefully fix CI on Windows --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e05cbbb..c356383 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,9 +58,9 @@ jobs: - uses: julia-actions/cache@v1 - name: Apply JuliaFormatter and check format run: | - julia -e 'using Pkg; Pkg.add(PackageSpec(name = "JuliaFormatter"))' - julia -e 'using JuliaFormatter; !format(".", verbose=true) && - error("Code not properly formatted")' + julia -e "using Pkg; Pkg.add(\"JuliaFormatter\"))" + julia -e "using JuliaFormatter; !format(\".\", verbose=true) && + error(\"Code not properly formatted\")" - name: Build package uses: julia-actions/julia-buildpkg@v1 - name: Run tests