Skip to content

Commit

Permalink
Merge pull request #1372 from SRetip/cargo-audit-fix
Browse files Browse the repository at this point in the history
READY : workflow, audit fix
  • Loading branch information
Wandalen committed Jun 3, 2024
2 parents 8248fc3 + 7941880 commit 9b7767a
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 && cd -
- 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 && cd -
- 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 9b7767a

Please sign in to comment.