File tree 3 files changed +70
-1
lines changed
3 files changed +70
-1
lines changed Original file line number Diff line number Diff line change @@ -11,3 +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
+
15
+ ---
16
+ kind : pipeline
17
+ name : linux - arm - Julia 1.6
18
+ platform :
19
+ os : linux
20
+ arch : arm
21
+
22
+ steps :
23
+ - name : build
24
+ image : julia:1.6
25
+ commands :
26
+ - " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
27
+
28
+ ---
29
+ kind : pipeline
30
+ name : linux - arm64 - Julia 1.6
31
+
32
+ platform :
33
+ os : linux
34
+ arch : arm64
35
+
36
+ steps :
37
+ - name : build
38
+ image : julia:1.6
39
+ commands :
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
+ - ' nightly'
15
+ os :
16
+ - ubuntu-latest
17
+ - macOS-latest
18
+ - windows-latest
19
+ arch :
20
+ - x64
21
+ - x86
22
+ exclude :
23
+ - os : macOS-latest
24
+ arch : x86
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - uses : julia-actions/setup-julia@v1
28
+ with :
29
+ version : ${{ matrix.version }}
30
+ arch : ${{ matrix.arch }}
31
+ - uses : actions/cache@v1
32
+ env :
33
+ cache-name : cache-artifacts
34
+ with :
35
+ path : ~/.julia/artifacts
36
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37
+ restore-keys : |
38
+ ${{ runner.os }}-test-${{ env.cache-name }}-
39
+ ${{ runner.os }}-test-
40
+ ${{ runner.os }}-
41
+ - uses : julia-actions/julia-buildpkg@v1
42
+ - 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.5 "
7
+ version = " 1.1.0 "
8
8
9
9
[deps ]
10
10
Unicode = " 4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
You can’t perform that action at this time.
0 commit comments