CompatHelper: bump compat for CausalInference to 0.18, (keep existing compat) #1239
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 Check | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-' | |
tags: '*' | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1 | |
- uses: actions/checkout@v1 | |
- name: Install JuliaFormatter | |
run: | | |
using Pkg | |
Pkg.add("JuliaFormatter") | |
shell: julia --color=yes {0} | |
- name: Format code | |
run: | | |
using JuliaFormatter | |
format("."; verbose=true) | |
shell: julia --color=yes {0} | |
- name: Check for formatting errors | |
shell: bash | |
run: | | |
output=$(git diff --name-only) | |
if [ "$output" != "" ]; then | |
>&2 echo "Some files have not been formatted !!!" | |
echo "$output" | |
exit 1 | |
fi |