File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,10 @@ class RunCI {
24
24
Sys .setCwd (oldCwd );
25
25
}
26
26
27
- #if (haxe > version ("4.0.5"))
27
+
28
+ buildSample (" samples/munit" );
28
29
buildSample (" samples/utest" );
29
30
buildSample (" samples/buddy" );
30
- #end
31
-
32
- buildSample (" samples/munit" );
33
31
buildSample (" samples/hexunit" );
34
32
buildSample (" samples/tink_unittest" );
35
33
buildSample (" samples/haxeunit" );
Original file line number Diff line number Diff line change 29
29
- name : install older libs for Haxe 3.4.7
30
30
if : matrix.haxe-version == '3.4.7'
31
31
run : |
32
- cd ${{github.workspace}}/samples/tink_unittest
33
- npx lix install haxelib:tink_core#1.26.0
32
+ (cd ${{github.workspace}}/samples/tink_unittest; npx lix install haxelib:tink_core#1.26.0)
33
+ (cd ${{github.workspace}}/samples/utest; npx lix install haxelib:utest#1.13.2)
34
+ (cd ${{github.workspace}}/samples/buddy; npx lix install haxelib:utest#1.13.2)
35
+ - name : install older libs for Haxe 4.0.5
36
+ if : matrix.haxe-version == '4.0.5'
37
+ run : |
38
+ (cd ${{github.workspace}}/samples/utest; npx lix install haxelib:utest#1.13.2)
39
+ (cd ${{github.workspace}}/samples/buddy; npx lix install haxelib:utest#1.13.2)
34
40
- name : run samples
35
41
run : npx haxe -cp .github/workflows --run RunCI
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## 2.0.6 (December 21, 2023)
4
+
5
+ - added support for upcoming utest version 2.x
6
+
3
7
## 2.0.5 (May 21, 2023)
4
8
5
9
- added support for pending tests in buddy, fixes [ #26 ] ( https://github.com/vshaxe/haxe-test-adapter/issues/26 )
You can’t perform that action at this time.
0 commit comments