Skip to content

Commit

Permalink
Hopefully fix CI on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
efaulhaber committed Jan 23, 2024
1 parent d340f58 commit 875c91f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 875c91f

Please sign in to comment.