Skip to content

Commit

Permalink
actions/shellcheck: check the build artifacts
Browse files Browse the repository at this point in the history
This is needed, because we transform the scripts (sometimes
substantially) and want to make sure that all the scripts are still fine
then.
  • Loading branch information
miallo committed Jan 16, 2024
1 parent e640546 commit c076269
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@ jobs:
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: shellcheck
- name: shellcheck original files
run: shellcheck *.sh **/*.sh
- name: build
run: ./build.sh
- name: shellcheck built files
run: shellcheck tutorial/.git/redeem.nuggit tutorial/.git/hooks/* tutorial/.git/*.sh
- name: run tests
run: ./test.sh -v

0 comments on commit c076269

Please sign in to comment.