Skip to content

Commit

Permalink
switch back to cargo make
Browse files Browse the repository at this point in the history
  • Loading branch information
wmmc88 committed Sep 16, 2024
1 parent 841f7c6 commit e2e1bcd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ jobs:
toolchain: ${{ matrix.rust_toolchain }}
components: clippy
targets: ${{ matrix.target_triple }}

- name: Install Cargo Make
uses: taiki-e/install-action@v2
with:
tool: cargo-make

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand All @@ -84,7 +89,7 @@ jobs:

- if: matrix.build-mode == 'manual'
working-directory: ./examples
run: cargo +${{ matrix.rust_toolchain }} build --locked --profile ${{ matrix.cargo_profile }} --target ${{ matrix.target_triple }} --workspace
run: cargo +${{ matrix.rust_toolchain }} make default --locked --profile ${{ matrix.cargo_profile }} --target ${{ matrix.target_triple }} --workspace

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Expand Down

0 comments on commit e2e1bcd

Please sign in to comment.