diff --git a/.github/workflows/standard_rust_push.yml b/.github/workflows/standard_rust_push.yml index 1812c69512..c093bca7e1 100644 --- a/.github/workflows/standard_rust_push.yml +++ b/.github/workflows/standard_rust_push.yml @@ -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 }} diff --git a/module/move/willbe/template/workflow/standard_rust_push.yml b/module/move/willbe/template/workflow/standard_rust_push.yml index 1812c69512..c093bca7e1 100644 --- a/module/move/willbe/template/workflow/standard_rust_push.yml +++ b/module/move/willbe/template/workflow/standard_rust_push.yml @@ -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 }}