File tree Expand file tree Collapse file tree 5 files changed +49
-46
lines changed Expand file tree Collapse file tree 5 files changed +49
-46
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
4
-
5
- platform :
6
- os : linux
7
- arch : arm
8
-
9
- steps :
10
- - name : build
11
- image : julia:1.0
12
- commands :
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 - arm64 - Julia 1.0
3
+ name : linux - arm64 - Julia 1.5
18
4
19
5
platform :
20
6
os : linux
21
7
arch : arm64
22
8
23
9
steps :
24
10
- name : build
25
- image : julia:1.0
11
+ image : julia:1.5
26
12
commands :
27
13
- " julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
28
14
29
15
---
30
16
kind : pipeline
31
- name : linux - arm64 - Julia 1.5
17
+ name : linux - arm64 - Julia 1.6
32
18
33
19
platform :
34
20
os : linux
35
21
arch : arm64
36
22
37
23
steps :
38
24
- name : build
39
- image : julia:1.5
25
+ image : julia:1.6
40
26
commands :
41
27
- " 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", "LaTeX"]
4
4
license = " MIT"
5
5
name = " LaTeX_Entities"
6
6
uuid = " 9927f19a-46ce-5bdd-a20a-f46a78b61e3d"
7
- version = " 1.0.1 "
7
+ version = " 1.0.2 "
8
8
9
9
[deps ]
10
10
StrTables = " 9700d1a9-a7c8-5760-9816-a99fda30bb8f"
Original file line number Diff line number Diff line change 1
1
using StrTables, LaTeX_Entities
2
2
3
- @static VERSION < v " 0.7.0-DEV " ? ( using Base . Test) : ( using Test)
3
+ using Test
4
4
5
5
const def = LaTeX_Entities. default
6
6
You can’t perform that action at this time.
0 commit comments