File tree 2 files changed +14
-12
lines changed
2 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 21
21
strategy :
22
22
fail-fast : false
23
23
matrix :
24
- sdk : [ 2.19.6 ]
24
+ sdk : [ 2.19.6, 3.5.4 ]
25
25
steps :
26
26
- uses : actions/checkout@v2
27
27
- uses : dart-lang/setup-dart@v1
@@ -34,11 +34,12 @@ jobs:
34
34
if : ${{ matrix.sdk == '2.19.6' }}
35
35
- name : Analyze project source
36
36
run : dart analyze
37
- - name : Run tests on chrome
38
- run : dart run build_runner test --delete-conflicting-outputs -- -p chrome
39
- - name : Run tests in release mode on chrome
40
- run : dart run build_runner test --release --delete-conflicting-outputs -- -p chrome
37
+ - name : Run tests in dev mode
38
+ run : dart test -p chrome
39
+ - name : Run tests in release mode
40
+ run : dart test -c dart2js -p chrome
41
41
- name : Publish SBOM
42
+ if : ${{ matrix.sdk == '2.19.6' }}
42
43
uses : anchore/sbom-action@v0
43
44
with :
44
45
path : ./
Original file line number Diff line number Diff line change @@ -3,19 +3,20 @@ version: 8.0.8
3
3
description : A state management library written in dart that enforces immutability
4
4
homepage : https://github.com/davidmarne/built_redux
5
5
dependencies :
6
- analyzer : ^ 5.0.0
7
- build : " >=1 .0.0 <3.0.0 "
6
+ analyzer : ' >= 5.0.0 <7.0.0 '
7
+ build : ^2 .0.0
8
8
built_collection : ^5.0.0
9
- built_value : ^8.0 .0
10
- source_gen : " >=0.9.4 <2. 0.0"
9
+ built_value : ^8.5 .0
10
+ source_gen : ^1. 0.0
11
11
test : ^1.16.0
12
12
13
13
dev_dependencies :
14
14
build_runner : ^2.0.0
15
15
build_test : ^2.0.0
16
- built_value_generator : ^8.0 .0
16
+ built_value_generator : ^8.5 .0
17
17
build_web_compilers : ' >=3.0.0 <5.0.0'
18
- workiva_analysis_options : ^1.0 .0
18
+ workiva_analysis_options : ^1.2 .0
19
19
20
20
environment :
21
- sdk : " >=2.12.0 <3.0.0"
21
+ sdk : ' >=2.12.0 <3.0.0'
22
+
You can’t perform that action at this time.
0 commit comments