CompatHelper: add new compat entry for DimensionalData at version 0.29 for package docs, (keep existing compat) #83
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@v4 | |
- 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: Suggest formatting changes | |
uses: reviewdog/action-suggester@v1 | |
if: github.event_name == 'pull_request' | |
with: | |
tool_name: JuliaFormatter | |
fail_on_error: true |