diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 4bb7a80..16ab5c9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -23,6 +23,14 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Ensure sccache with S3 support + run: | + if sccache --version 2>/dev/null && sccache --show-stats 2>/dev/null; then + echo "sccache with S3 support already installed" + else + cargo install sccache --features s3 --locked + fi + - name: Check formatting run: cargo fmt --check --all