Asymmetric line flow (Refined); READY FOR REVIEW !!! #465
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format suggestions | |
on: | |
pull_request: | |
jobs: | |
code-style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: julia-actions/julia-format@v2 | |
continue-on-error: true | |
- name: Check on failures | |
if: steps.julia-format.outcome != 'success' | |
run: echo "There are formatting errors. Please check the logs above." | |
shell: bash |