File tree Expand file tree Collapse file tree 4 files changed +25
-0
lines changed
Expand file tree Collapse file tree 4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Linting
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - main
8+
9+ jobs :
10+ linting :
11+ name : Lint artifacts
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v4
15+ - shell : bash
16+ run : |
17+ shellcheck "${GITHUB_WORKSPACE}"/*.sh
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Requirements tracing
22
33on :
44 pull_request :
5+ push :
6+ branches :
7+ - main
58
69jobs :
710 tracing :
Original file line number Diff line number Diff line change @@ -29,4 +29,7 @@ Needs: req
2929
3030The OFT Action runs the OpenFastTrace ` trace ` command.
3131
32+ Covers:
33+ - feat~ standard-github-action~ 1
34+
3235Needs: impl
Original file line number Diff line number Diff line change 99echo " ::notice::using OpenFastTrace JARs from: ${LIB_DIR} "
1010
1111# Run OpenFastTrace
12+ # shellcheck disable=SC2086
13+ # we need to provide the file patterns unquoted in order for the shell to expand any glob patterns like "*.md"
1214if (java -cp " ${LIB_DIR} /*" \
1315 org.itsallcode.openfasttrace.core.cli.CliStarter trace -o " ${report_format} " \
1416 -f " ${report_file_name} " \
You can’t perform that action at this time.
0 commit comments