File tree 4 files changed +52
-47
lines changed
4 files changed +52
-47
lines changed Original file line number Diff line number Diff line change
1
+ environment :
2
+ matrix :
3
+ - julia_version : 1
4
+ - julia_version : 1.6
5
+ - julia_version : 1.10
6
+ - julia_version : nightly
7
+
8
+ platform :
9
+ - x86 # 32-bit
10
+ - x64 # 64-bit
11
+
12
+ # # uncomment the following lines to allow failures on nightly julia
13
+ # # (tests will run but not make your overall status red)
14
+ matrix :
15
+ allow_failures :
16
+ - julia_version : nightly
17
+
18
+ branches :
19
+ only :
20
+ - master
21
+ - /release-.*/
22
+
23
+ notifications :
24
+ - provider : Email
25
+ on_build_success : false
26
+ on_build_failure : false
27
+ on_build_status_changed : false
28
+
29
+ install :
30
+ - ps : iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
31
+
32
+ build_script :
33
+ - echo "%JL_BUILD_SCRIPT%"
34
+ - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
35
+
36
+ test_script :
37
+ - echo "%JL_TEST_SCRIPT%"
38
+ - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
39
+
40
+ # # Uncomment to support code coverage upload. Should only be enabled for packages
41
+ # # which would have coverage gaps without running on Windows
42
+ # on_success:
43
+ # - echo "%JL_CODECOV_SCRIPT%"
44
+ # - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
Original file line number Diff line number Diff line change 1
1
name = " ReduceLinAlg"
2
2
uuid = " bfcbc1eb-9170-5dc4-a833-47b2e27cecb4"
3
+ authors = [" Michael Reed" ]
4
+ version = " 0.1.1"
3
5
4
6
[deps ]
5
7
Reduce = " 93e0c654-6965-5f22-aba9-9c1ae6b3c259"
6
8
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
7
9
10
+ [compat ]
11
+ julia = " 1"
12
+ Reduce = " 1.2.13"
13
+
8
14
[extras ]
9
15
Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
10
16
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -130,4 +130,6 @@ function __init__()
130
130
load_package (:linalg )
131
131
end
132
132
133
+ Reduce. stop ()
134
+
133
135
end # module
You can’t perform that action at this time.
0 commit comments