Bump julia-actions/setup-julia from 1 to 2 (#54) #9
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: YAS Enforcer | |
on: | |
push: | |
branches: | |
- main | |
- /^release-.*$/ | |
tags: ["*"] | |
paths: | |
- "**/*.jl" | |
- ".github/workflows/FormatCheck.yml" | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: | |
- "**/*.jl" | |
- ".github/workflows/FormatCheck.yml" | |
jobs: | |
format-check: | |
name: YASStyle | |
# These permissions are needed to: | |
# - Delete old caches: https://github.com/julia-actions/cache#usage | |
# - Post formatting suggestions: https://github.com/reviewdog/action-suggester#required-permissions | |
permissions: | |
actions: write | |
contents: read | |
pull-requests: write | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: "1" | |
- uses: julia-actions/cache@v1 | |
- name: Install JuliaFormatter | |
shell: julia --project=@format --color=yes {0} | |
run: | | |
using Pkg | |
Pkg.add(PackageSpec(; name="JuliaFormatter", version="1")) | |
- name: Check formatting | |
shell: julia --project=@format --color=yes {0} | |
run: | | |
using JuliaFormatter | |
format(["src", "test", "docs"], YASStyle(); verbose=true) | |
# Add formatting suggestions to non-draft PRs when "Check formatting" fails | |
- uses: reviewdog/action-suggester@v1 | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.draft == false }} | |
with: | |
tool_name: JuliaFormatter | |
fail_on_error: true |