commit d959ca92b61a17910a833203fd5acc7c416b92bd parent 84c720d49715c93f5eb01bb6ede7063303f7dd5c Author: Sean Enck <sean@ttypty.com> Date: Fri, 17 Feb 2023 19:51:15 -0500 apparently this requires this call out Diffstat:
| M | scripts/ci/action.yml | | | 17 | +++++++++-------- |
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/scripts/ci/action.yml b/scripts/ci/action.yml @@ -1,11 +1,12 @@ name: "build steps" runs: - steps: - - uses: actions/checkout@v3 - - name: "build" - shell: sh - run: make build - - name: "check" - shell: sh - run: make check + using: "composite" + steps: + - uses: actions/checkout@v3 + - name: "build" + shell: sh + run: make build + - name: "check" + shell: sh + run: make check