Skip to content

Bump codecov/codecov-action from 4 to 5 #82

Bump codecov/codecov-action from 4 to 5

Bump codecov/codecov-action from 4 to 5 #82

Workflow file for this run

name: format-check
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: actions/checkout@v4
- name: Install JuliaFormatter
# This will use the latest version by default but you could set the version as well:
# Pkg.add(; name="JuliaFormatter", version="1")
run: |
using Pkg
Pkg.add(; name="JuliaFormatter")
shell: julia --color=yes {0}
- name: Run formatter
run: |
using JuliaFormatter
format("."; verbose=true)
shell: julia --color=yes {0}
- name: Format check
run: |
out = Cmd(`git diff --name-only`) |> read |> String
if out == ""
exit(0)
else
@error "Some files have not been formatted !!!"
write(stdout, out)
exit(1)
end
shell: julia --color=yes {0}