File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 45
45
steps :
46
46
- name : Checkout code
47
47
uses : actions/checkout@v4
48
+ with :
49
+ fetch-depth : 2
48
50
49
51
- name : Setup PHP
50
52
uses : shivammathur/setup-php@v2
59
61
- name : Execute type coverage tests
60
62
run : vendor/bin/pest --type-coverage --type-coverage-json=build/logs/pest-coverage.json
61
63
62
- - name : Upload coverage results
63
- run : |
64
- bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh) --repo-token ${{ secrets.OTTERWISE_TOKEN }}
65
- bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh) --type-coverage-file build/logs/pest-coverage.json
64
+ - name : Upload Test Coverage
65
+ env :
66
+ OTTERWISE_TOKEN : ${{ secrets.OTTERWISE_TOKEN }}
67
+ run : bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh)
68
+
69
+ - name : Upload Types Coverage
70
+ env :
71
+ OTTERWISE_TOKEN : ${{ secrets.OTTERWISE_TOKEN }}
72
+ run : bash <(curl -s https://raw.githubusercontent.com/getOtterWise/bash-uploader/main/uploader.sh) --type-coverage-file build/logs/pest-coverage.json
You can’t perform that action at this time.
0 commit comments