diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index dd483b0..704855b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -16,14 +16,6 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Run sccache-cache only on non-release runs - if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' - uses: mozilla-actions/sccache-action@v0.0.3 - - name: Set Rust caching env vars only on non-release runs - if: github.event_name != 'release' && github.event_name != 'workflow_dispatch' - run: | - echo "SCCACHE_GHA_ENABLED=true" >> $GITHUB_ENV - echo "RUSTC_WRAPPER=sccache" >> $GITHUB_ENV - name: Build run: cargo build --verbose - name: Format