File tree Expand file tree Collapse file tree 4 files changed +52
-36
lines changed Expand file tree Collapse file tree 4 files changed +52
-36
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
kind : pipeline
3
- name : linux - arm - Julia 1.0
3
+ name : linux - arm64 - Julia 1.5
4
4
5
5
platform :
6
6
os : linux
7
- arch : arm
7
+ arch : arm64
8
8
9
9
steps :
10
10
- name : build
11
- image : julia:1.0
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
16
kind : pipeline
17
- name : linux - arm64 - Julia 1.0
17
+ name : linux - arm - Julia 1.6
18
18
19
19
platform :
20
20
os : linux
21
- arch : arm64
21
+ arch : arm
22
22
23
23
steps :
24
24
- name : build
25
- image : julia:1.0
25
+ image : julia:1.6
26
26
commands :
27
27
- " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
28
28
29
29
---
30
30
kind : pipeline
31
- name : linux - arm64 - Julia 1.5
31
+ name : linux - arm64 - Julia 1.6
32
32
33
33
platform :
34
34
os : linux
35
35
arch : arm64
36
36
37
37
steps :
38
38
- name : build
39
- image : julia:1.5
39
+ image : julia:1.6
40
40
commands :
41
41
- " 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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ keywords = ["Entities", "Unicode"]
4
4
license = " MIT"
5
5
name = " Unicode_Entities"
6
6
uuid = " a8aa15d3-c567-5e9f-b6cc-4b0f97f09cf7"
7
- version = " 1.1.0 "
7
+ version = " 1.1.1 "
8
8
9
9
[deps ]
10
10
StrTables = " 9700d1a9-a7c8-5760-9816-a99fda30bb8f"
You can’t perform that action at this time.
0 commit comments