File tree 3 files changed +56
-13
lines changed
3 files changed +56
-13
lines changed Original file line number Diff line number Diff line change @@ -11,30 +11,30 @@ steps:
11
11
image : julia:1.5
12
12
commands :
13
13
- " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
14
+
14
15
---
15
16
kind : pipeline
16
- name : linux - arm64 - Julia 1.0
17
-
17
+ name : linux - arm - Julia 1.6
18
18
platform :
19
19
os : linux
20
- arch : arm64
20
+ arch : arm
21
21
22
22
steps :
23
23
- name : build
24
- image : julia:1.0
24
+ image : julia:1.6
25
25
commands :
26
26
- " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
27
27
28
28
---
29
29
kind : pipeline
30
- name : linux - arm - Julia 1.0
30
+ name : linux - arm64 - Julia 1.6
31
31
32
32
platform :
33
33
os : linux
34
- arch : arm
34
+ arch : arm64
35
35
36
36
steps :
37
37
- name : build
38
- image : julia:1.0
38
+ image : julia:1.6
39
39
commands :
40
40
- " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ version :
13
+ - ' 1.5'
14
+ - ' 1.6'
15
+ - ' nightly'
16
+ os :
17
+ - ubuntu-latest
18
+ - macOS-latest
19
+ - windows-latest
20
+ arch :
21
+ - x64
22
+ - x86
23
+ exclude :
24
+ - os : macOS-latest
25
+ arch : x86
26
+ steps :
27
+ - uses : actions/checkout@v2
28
+ - uses : julia-actions/setup-julia@v1
29
+ with :
30
+ version : ${{ matrix.version }}
31
+ arch : ${{ matrix.arch }}
32
+ - uses : actions/cache@v1
33
+ env :
34
+ cache-name : cache-artifacts
35
+ with :
36
+ path : ~/.julia/artifacts
37
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38
+ restore-keys : |
39
+ ${{ runner.os }}-test-${{ env.cache-name }}-
40
+ ${{ runner.os }}-test-
41
+ ${{ runner.os }}-
42
+ - uses : julia-actions/julia-buildpkg@v1
43
+ - uses : julia-actions/julia-runtest@v1
Original file line number Diff line number Diff line change 4
4
keywords = [" Strings" ]
5
5
license = " MIT"
6
6
uuid = " e79e7a6a-7bb1-5a4d-9d64-da657b06f53a"
7
- version = " 1.0.4 "
7
+ version = " 1.0.5 "
8
8
9
9
[deps ]
10
10
Unicode = " 4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
@@ -24,9 +24,9 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
24
24
test = [" Test" , " Random" ]
25
25
26
26
[compat ]
27
- julia = " ^1.0.0 "
28
- ModuleInterfaceTools = " ^1.0.0 "
29
- MurmurHash3 = " ^1.0.3 "
30
- StrAPI = " ^1.0.0 "
27
+ julia = " 1 "
28
+ ModuleInterfaceTools = " 1 "
29
+ MurmurHash3 = " ^1.2 "
30
+ StrAPI = " ^1.1 "
31
31
ChrBase = " ^1.0.1"
32
- CharSetEncodings = " ^1.0.0 "
32
+ CharSetEncodings = " 1 "
You can’t perform that action at this time.
0 commit comments