Add desktop platform support #11

Open
claude-bot wants to merge 7 commits from worktree-desktop-support into main
Showing only changes of commit 04f628b70e - Show all commits

View file

@ -144,6 +144,20 @@ jobs:
restore-keys: | restore-keys: |
cargo-${{ runner.os }}- cargo-${{ runner.os }}-
# Own key, not shared with the clippy jobs above: this job is the
# only one that needs full codegen (clippy's check-only builds
# produce metadata, not the linkable artifacts `cargo test` needs,
# so there's nothing to share either way), and it never touches
# feedsignal-web, so its target/ stays far smaller than a build
# covering every crate's feature set.
- name: Cache test target directory
uses: actions/cache@v4
with:
path: target
key: target-test-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
target-test-${{ runner.os }}-
- name: Cache sccache compilation objects - name: Cache sccache compilation objects
uses: actions/cache@v4 uses: actions/cache@v4
with: with: