From f559824c05b5a239fbf2be00e4a216134a544292 Mon Sep 17 00:00:00 2001 From: Henning Oschwald Date: Thu, 30 Jul 2026 17:36:55 +0200 Subject: [PATCH] ci: add rust-cache and fix branch name for Gitea - Add Swatinem/rust-cache@v2 to speed up CI builds - Change branch trigger from 'main' to 'master' to match Gitea repo --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6f04f8..1e5d12f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [main] + branches: [master] pull_request: env: @@ -13,6 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - uses: Swatinem/rust-cache@v2 - uses: dtolnay/rust-toolchain@stable with: components: rustfmt, clippy