bump codecov/codecov-action
from 4 to 5 (#5028)
#2676
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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [master, v2] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@latest | |
- name: format Julia files | |
run: | | |
julia --color=yes --compile=min -O0 -e ' | |
using Pkg; Pkg.add("JuliaFormatter") | |
using JuliaFormatter | |
format(["RecipesBase", "RecipesPipeline", "PlotsBase", "src", "test", "GraphRecipes", "StatsPlots", "PlotThemes"]) | |
' | |
- name: suggester | |
if: success() && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/v2' ) | |
uses: reviewdog/action-suggester@v1 | |
with: | |
tool_name: JuliaFormatter | |
fail_on_error: true | |
# reviewdog/action-suggester not using `cleanup` flag? | |
- name: cleanup | |
if: success() || failure() | |
run: | | |
git checkout -- . | |
git clean --force | |
shell: bash |