File tree 4 files changed +33
-38
lines changed 4 files changed +33
-38
lines changed Original file line number Diff line number Diff line change 20
20
run : bb test-coverage
21
21
22
22
- name : Upload Code Coverage Results
23
- run : |
24
- echo "Downloading codecov uploader script"
25
- curl -s https://codecov.io/bash > codecov
26
- echo "Verifying codedov uploader script"
27
- VERSION=$(grep 'VERSION=\".*\"' codecov | cut -d'"' -f2);
28
- for i in 1 256 512
29
- do
30
- sha${i}sum -c --ignore-missing <(curl -s "https://raw.githubusercontent.com/codecov/codecov-bash/${VERSION}/SHA${i}SUM")
31
- done
32
- echo "Uploading to codecov"
33
- bash codecov -f target/coverage/codecov.json
23
+ - uses : codecov/codecov-action@v4
24
+ with :
25
+ fail_ci_if_error : true # optional (default = false)
26
+ file : ./target/coverage/codecov.json
27
+ token : ${{ secrets.CODECOV_TOKEN }} # required
28
+ verbose : true # optional (default = false)
Original file line number Diff line number Diff line change 1
1
name : Libs Test
2
2
3
- on :
4
- # allow this workflow to be called from other workflows, namely: publish
5
- workflow_call :
6
- push :
7
- branches :
8
- - main
9
- pull_request :
10
- branches :
11
- - main
3
+ # on:
4
+ # # allow this workflow to be called from other workflows, namely: publish
5
+ # workflow_call:
6
+ # push:
7
+ # branches:
8
+ # - main
9
+ # pull_request:
10
+ # branches:
11
+ # - main
12
12
13
13
jobs :
14
14
enumerate-libs :
Original file line number Diff line number Diff line change 1
1
name : Native Image Tests
2
2
3
- on :
4
- # allow this workflow to be called from other workflows, namely: publish
5
- workflow_call :
6
- push :
7
- branches :
8
- - main
9
- pull_request :
10
- branches :
11
- - main
3
+ # on:
4
+ # # allow this workflow to be called from other workflows, namely: publish
5
+ # workflow_call:
6
+ # push:
7
+ # branches:
8
+ # - main
9
+ # pull_request:
10
+ # branches:
11
+ # - main
12
12
13
13
jobs :
14
14
build :
Original file line number Diff line number Diff line change 1
1
name : Unit Tests
2
2
3
- on :
4
- # allow this workflow to be called from other workflows, namely: publish
5
- workflow_call :
6
- push :
7
- branches :
8
- - main
9
- pull_request :
10
- branches :
11
- - main
3
+ # on:
4
+ # # allow this workflow to be called from other workflows, namely: publish
5
+ # workflow_call:
6
+ # push:
7
+ # branches:
8
+ # - main
9
+ # pull_request:
10
+ # branches:
11
+ # - main
12
12
13
13
jobs :
14
14
setup :
You can’t perform that action at this time.
0 commit comments