Skip to content

Commit

Permalink
ci: correct generic workflow (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
georglauterbach authored Jan 19, 2024
1 parent 7d3f259 commit 88dafce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generic_code_executor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ jobs:
cargo install cargo-audit
cargo-audit --version
- name: Run all checks
- name: Run command
if: inputs.install-sccache
env:
SCCACHE_GHA_ENABLED: 'true'
RUSTC_WRAPPER: sccache
run: ${{ inputs.command }}

- name: Run all checks
if: ! inputs.install-sccache
- name: Run command
if: ${{ ! inputs.install-sccache }}
run: ${{ inputs.command }}

0 comments on commit 88dafce

Please sign in to comment.