Skip to content

Commit

Permalink
stable Plots v2 - checkpoint CI ✓
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Apr 18, 2024
1 parent f55ee23 commit 3bea623
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 18 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ jobs:
- uses: codecov/codecov-action@v4
if: startsWith(matrix.os, 'ubuntu')
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
file: lcov.info

Skip:
Expand Down
21 changes: 3 additions & 18 deletions .github/workflows/format_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,17 @@ jobs:
- name: Install dependencies
run: |
using Pkg
Pkg.add([
PackageSpec("JuliaFormatter"),
PackageSpec(url = "https://github.com/tkf/JuliaProjectFormatter.jl.git"),
])
Pkg.add("JuliaFormatter")
shell: julia --color=yes {0}

- name: Format Julia files
run: |
using JuliaFormatter
format(["RecipesBase", "RecipesPipeline", "PlotsBase", "src", "test"])
shell: julia --color=yes --compile=min -O0 {0}

- name: suggester / JuliaFormatter
if: success() && github.ref == 'refs/heads/master'
uses: reviewdog/action-suggester@v1
with:
tool_name: JuliaFormatter
Expand All @@ -42,17 +41,3 @@ jobs:
git checkout -- .
git clean --force
shell: bash

# temporarily disable `JuliaProjectFormatter` until github.com/tkf/JuliaProjectFormatter.jl/pull/7 is merged
# - name: Format Julia project files
# if: success() || failure()
# run: |
# using JuliaProjectFormatter
# format_projects()
# shell: julia --color=yes --compile=min -O0 {0}
# - name: suggester / JuliaProjectFormatter
# if: success() || failure()
# uses: reviewdog/action-suggester@v1
# with:
# tool_name: JuliaProjectFormatter
# fail_on_error: true

0 comments on commit 3bea623

Please sign in to comment.