diff --git a/.github/workflows/Format.yml b/.github/workflows/Format.yml deleted file mode 100644 index 8d2d8b6..0000000 --- a/.github/workflows/Format.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Format suggestions -on: - pull_request: - # this argument is not required if you don't use the `suggestion-label` input - types: [ opened, reopened, synchronize, labeled, unlabeled ] -jobs: - code-style: - runs-on: ubuntu-latest - steps: - - uses: julia-actions/julia-format@v3 - with: - version: '1' # Set `version` to '1.0.54' if you need to use JuliaFormatter.jl v1.0.54 (default: '1') - suggestion-label: '' # leave this unset or empty to show suggestions for all PRs \ No newline at end of file diff --git a/test/Project.toml b/test/Project.toml index 7faab14..dc5e6af 100644 --- a/test/Project.toml +++ b/test/Project.toml @@ -2,6 +2,5 @@ Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7" JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b" -JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899" Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/test/runtests.jl b/test/runtests.jl index ae7ffd5..9ba3542 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,7 +1,5 @@ using PlutoTeachingTools using Test -using JuliaFormatter - using Markdown @testset verbose = true "PlutoTeachingTools.jl" begin diff --git a/test/test_linting.jl b/test/test_linting.jl index 28b70d6..ede20de 100644 --- a/test/test_linting.jl +++ b/test/test_linting.jl @@ -1,15 +1,10 @@ using PlutoTeachingTools using Test -using JuliaFormatter: JuliaFormatter using Aqua: Aqua using JET: JET using ExplicitImports: ExplicitImports -@testset "Code formatting" begin - @test JuliaFormatter.format(PlutoTeachingTools; verbose=false, overwrite=false) -end - @testset "Aqua tests" begin Aqua.test_all(PlutoTeachingTools; ambiguities=false) end