@@ -28,26 +28,29 @@ jobs:
28
28
with :
29
29
path : ./artifacts
30
30
31
- - name : Copy Artifacts into Root Folder
32
- working-directory : ./artifacts
33
- run : |
34
- cp .coverage/.coverage ../
35
- cp .lint.txt/.lint.txt ../
36
31
37
- - name : Generate Report
38
- run : poetry run nox -s report -- -- --format json | tee metrics.json
39
-
40
- - name : Upload Artifacts
41
- uses : actions/upload-artifact@v3
42
- with :
43
- name : metrics.json
44
- path : metrics.json
45
-
46
- - name : Generate GitHub Summary
47
- run : |
48
- echo -e "# Summary\n" >> $GITHUB_STEP_SUMMARY
49
- poetry run nox -s report -- -- --format markdown >> $GITHUB_STEP_SUMMARY
50
- echo -e "\n\n# Coverage\n" >> $GITHUB_STEP_SUMMARY
51
- poetry run coverage report -- --format markdown >> $GITHUB_STEP_SUMMARY
52
- echo -e "\n\n# Static Code Analysis\n" >> $GITHUB_STEP_SUMMARY
53
- cat .lint.txt >> $GITHUB_STEP_SUMMARY
32
+ # can be used again if “issue #181” is closed
33
+ # https://github.com./exasol/python-toolbox/issues/181
34
+ # - name: Copy Artifacts into Root Folder
35
+ # working-directory: ./artifacts
36
+ # run: |
37
+ # cp .coverage/.coverage ../
38
+ # cp .lint.txt/.lint.txt ../
39
+ #
40
+ # - name: Generate Report
41
+ # run: poetry run nox -s report -- -- --format json | tee metrics.json
42
+ #
43
+ # - name: Upload Artifacts
44
+ # uses: actions/upload-artifact@v3
45
+ # with:
46
+ # name: metrics.json
47
+ # path: metrics.json
48
+
49
+ # - name: Generate GitHub Summary
50
+ # run: |
51
+ # echo -e "# Summary\n" >> $GITHUB_STEP_SUMMARY
52
+ # poetry run nox -s report -- -- --format markdown >> $GITHUB_STEP_SUMMARY
53
+ # echo -e "\n\n# Coverage\n" >> $GITHUB_STEP_SUMMARY
54
+ # poetry run coverage report -- --format markdown >> $GITHUB_STEP_SUMMARY
55
+ # echo -e "\n\n# Static Code Analysis\n" >> $GITHUB_STEP_SUMMARY
56
+ # cat .lint.txt >> $GITHUB_STEP_SUMMARY
0 commit comments