File tree Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Expand file tree Collapse file tree 2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ jobs :
8+ build :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v2
12+ with :
13+ submodules : true
14+ fetch-depth : 1
15+ - uses : agahkarakuzu/moxunit-action@master
16+ with :
17+ src : src
18+ with_coverage : true
19+ cover_xml_file : coverage.xml
20+ - uses : codecov/codecov-action@v1
21+ with :
22+ token : ${{ secrets.CODECOV_TOKEN }} # not required for public repos
23+ file : coverage.xml # optional
24+ flags : unittests # optional
25+ name : codecov-umbrella # optional
26+ fail_ci_if_error : true # optional (default = false)
Original file line number Diff line number Diff line change @@ -34,9 +34,9 @@ before_script:
3434
3535jobs :
3636 include :
37- - stage : " Tests"
38- name : " Unit and integration Tests"
39- script : octave $OCTFLAGS --eval "results = runTests; assert(all(~[results.Failed]))"
37+ # - stage: "Tests"
38+ # name: "Unit and integration Tests"
39+ # script: octave $OCTFLAGS --eval "results = runTests; assert(all(~[results.Failed]))"
4040 - stage : " BIDS validator"
4141 name : " Create and check dataset"
4242 script : cd manualTests && octave $OCTFLAGS --eval "test_makeRawDataset" && bids-validator `pwd`/output/rawdata/ --ignoreNiftiHeaders
You can’t perform that action at this time.
0 commit comments