@@ -15,18 +15,18 @@ jobs:
1515 runs-on : ubuntu-latest
1616 strategy :
1717 matrix :
18- haxe-version : ['4.0.5', '4.1.5', 'nightly']
18+ haxe-version : ['4.0.5', '4.1.5', '4.2.1', ' nightly']
1919 env :
20- CC_TEST_REPORTER_ID : 1dff6f89d7179dff5db635c6b4fe64acdd5694c9ed44d7da5f12f0f7d3d163b7
21- CODECOV_TOKEN : ${{secrets.CODECOV_TOKEN}}
20+ CC_TEST_REPORTER_ID : c4eda639526d39fbcab7ab9fc68c4046d4e597df56dbcb552b42d27b3580b758
21+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
2222 steps :
2323 - uses : actions/checkout@v1
2424 - name : Use Node.js 10
2525 uses : actions/setup-node@v1
2626 with :
2727 node-version : 10
2828 - name : Installing codeclimate client
29- if : matrix.haxe-version == '4.1.5 '
29+ if : matrix.haxe-version == '4.2.1 '
3030 run : |
3131 curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
3232 chmod +x ./cc-test-reporter
@@ -60,13 +60,13 @@ jobs:
6060 - name : Run Java tests
6161 run : npx haxe testJava.hxml
6262 - name : Format and upload codeclimate coverage
63- if : success() && matrix.haxe-version == '4.1.5 '
63+ if : success() && matrix.haxe-version == '4.2.1 '
6464 run : |
6565 ( \
6666 cd src; \
6767 ../cc-test-reporter format-coverage -t lcov ../lcov.info; \
6868 ../cc-test-reporter upload-coverage; \
6969 )
7070 - name : Upload results to codecov
71- if : success() && (matrix.haxe-version == '4.1.5 ')
71+ if : success() && (matrix.haxe-version == '4.2.1 ')
7272 run : bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"
0 commit comments