Skip to content

Commit

Permalink
fix CI step
Browse files Browse the repository at this point in the history
  • Loading branch information
svilupp committed Jan 11, 2024
1 parent 5accdea commit 87e9957
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ jobs:
- uses: codecov/codecov-action@v2
with:
files: lcov.info
- name: Install JuliaFormatter and format
run: |
julia -e 'import Pkg; Pkg.add(\"JuliaFormatter\")'
julia -e 'using JuliaFormatter; out=format(\".\", verbose=true); out ? exit(0) : exit(1)'
- name: 'Install JuliaFormatter'
run: julia -e 'import Pkg; Pkg.add("JuliaFormatter")'
shell: bash
- name: 'Check format'
run: julia -e 'using JuliaFormatter; out=format(".", verbose=true); out ? exit(0) : exit(1)'
shell: bash

0 comments on commit 87e9957

Please sign in to comment.