Skip to content

Commit

Permalink
ci: run shellcheck on colorscad.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jschobben committed Apr 16, 2024
1 parent 47e40cf commit 6863062
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,21 @@ jobs:
./run.sh ${{ matrix.test-params }}
working-directory: test

code-quality:
name: Check code quality
runs-on: ubuntu-latest
steps:
- name: shellcheck colorscad.sh
run: |
shellcheck colorscad.sh
# TODO check tests, 3mfmerge

# Collect results, to be used as combined status check for PRs
all-succeeded:
name: All tests passed
needs: run-tests
needs:
- run-tests
- code-quality
if: always()
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 6863062

Please sign in to comment.