File tree 3 files changed +9
-4
lines changed 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 5
5
branches : [master, "release-*"]
6
6
tags : ["*"]
7
7
pull_request :
8
+ concurrency :
9
+ # Skip intermediate builds: all builds except for builds on the `master` or `release-*` branches
10
+ # Cancel intermediate builds: only pull request builds
11
+ group : ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || startsWith(github.ref, 'refs/heads/release-') || github.run_number }}
12
+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
8
13
jobs :
9
14
test :
10
15
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
13
18
fail-fast : false
14
19
matrix :
15
20
version :
16
- - ' 1.6'
21
+ - ' 1.1' # oldest Julia supported by this package
22
+ - ' 1.6' # current LTS
17
23
- ' 1' # automatically expands to the latest stable 1.x release of Julia
18
24
- ' nightly'
19
25
os :
Original file line number Diff line number Diff line change 1
1
name = " RegistryTools"
2
2
uuid = " d1eb7eb1-105f-429d-abf5-b0f65cb9e2c4"
3
3
authors = [" Stefan Karpinski <stefan@karpinski.org>" ]
4
- version = " 2.1 .0"
4
+ version = " 2.2 .0"
5
5
6
6
[deps ]
7
7
AutoHashEquals = " 15f4f7f2-30c1-5605-9d31-71845cf9641f"
@@ -12,7 +12,7 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
12
12
13
13
[compat ]
14
14
AutoHashEquals = " 0.2"
15
- julia = " 1.6 "
15
+ julia = " 1.1 "
16
16
17
17
[extras ]
18
18
Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
Original file line number Diff line number Diff line change 764
764
@testset " weakdeps" begin
765
765
import RegistryTools: ReturnStatus, check_and_update_registry_files
766
766
767
- temp_dir = mktempdir (; cleanup= false )
768
767
mktempdir (@__DIR__ ) do temp_dir
769
768
registry_path = joinpath (temp_dir, " registry" )
770
769
projects_path = joinpath (@__DIR__ , " project_files" )
You can’t perform that action at this time.
0 commit comments