Skip to content

Commit

Permalink
audit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SRetip committed Jun 3, 2024
1 parent 8248fc3 commit c30cbfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/standard_rust_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ jobs :
- name: Set MANIFEST_ROOT_PATH
id: rootpath
run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})"
- name: Build module
run: cd ${{ steps.rootpath.outputs.path }} && cargo build
- name: Audit the modules
run: cd ${{ steps.rootpath.outputs.path }} && make audit
run: make audit
continue-on-error: true
- name: Generate documentation for the modules
run: make doc open=no manifest_path=${{ inputs.manifest_path }}
Expand Down
4 changes: 3 additions & 1 deletion module/move/willbe/template/workflow/standard_rust_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ jobs :
- name: Set MANIFEST_ROOT_PATH
id: rootpath
run: echo "::set-output name=path::$(dirname ${{ inputs.manifest_path }})"
- name: Build module
run: cd ${{ steps.rootpath.outputs.path }} && cargo build
- name: Audit the modules
run: cd ${{ steps.rootpath.outputs.path }} && make audit
run: make audit
continue-on-error: true
- name: Generate documentation for the modules
run: make doc open=no manifest_path=${{ inputs.manifest_path }}
Expand Down

0 comments on commit c30cbfc

Please sign in to comment.