File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change 62
62
- run : cargo version
63
63
- name : Select Workspace Member
64
64
run : |
65
- export PROJ_ROOT="$(pwd)"
66
- echo "PROJ_ROOT=$PROJ_ROOT"
67
65
cd ${{ inputs.workspace-member }}
68
66
- name : Code Formatting
69
67
if : ${{ inputs.do-style-check }}
81
79
curl -LsSf https://get.nexte.st/latest/linux | tar zxf -
82
80
chmod u+x cargo-nextest
83
81
./cargo-nextest nextest run --profile ci
84
- echo "PROJ_ROOT=$PROJ_ROOT"
85
- echo "$PROJ_ROOT/target/nextest/ci/junit.xml"
86
- ls -lR "$PROJ_ROOT/target"
87
- test -f $PROJ_ROOT/target/nextest/ci/junit.xml
82
+ test -f $GITHUB_WORKSPACE/target/nextest/ci/junit.xml
88
83
# Upload junit.xml generated by cargo nextest which results in
89
84
# a nice overview over failed test-cases in the GitHub UI.
90
85
- name : Upload Unit Test Report
94
89
with :
95
90
# Name of the check run which will be created
96
91
name : cargo unit tests
97
- path : $PROJ_ROOT /target/nextest/ci/junit.xml
92
+ path : $GITHUB_WORKSPACE /target/nextest/ci/junit.xml
98
93
reporter : java-junit
You can’t perform that action at this time.
0 commit comments