File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ using Pkg
2
+ using Test
3
+
4
+ @testset " Test that the UUID is unchanged" begin
5
+ project_filename = joinpath (dirname (@__DIR__ ), " Project.toml" )
6
+ project = Pkg. TOML. parsefile (project_filename)
7
+ uuid = project[" uuid" ]
8
+ correct_uuid = " f43a241f-c20a-4ad4-852c-f6b1247861c6"
9
+ @test uuid == correct_uuid
10
+ end
Original file line number Diff line number Diff line change 47
47
${{ runner.os }}-test-${{ env.cache-name }}-
48
48
${{ runner.os }}-test-${{ matrix.os }}
49
49
${{ runner.os }}-
50
- - run : julia --color=yes .ci/change-uuid.jl
50
+ - run : julia --color=yes .ci/test_uuid_is_unchanged.jl
51
+ - run : julia --color=yes .ci/change_uuid.jl
51
52
- uses : julia-actions/julia-buildpkg@v1
52
53
- uses : julia-actions/julia-runtest@v1
53
54
- uses : julia-actions/julia-processcoverage@v1
You can’t perform that action at this time.
0 commit comments