Compare commits

..

1 commit

Author SHA1 Message Date
09a59e3647 Forgejo Action: Run npm and cargo commands in the CI.
All checks were successful
Check / Backend (pull_request) Successful in 14m13s
Check / Frontend (pull_request) Successful in 2m0s
2025-09-27 00:49:57 -07:00
4 changed files with 4319 additions and 1 deletions

View file

@ -25,7 +25,6 @@ jobs:
with: with:
# Don't cache ~/.cargo/bin since we restore the cache after we install things there # Don't cache ~/.cargo/bin since we restore the cache after we install things there
cache-bin: "false" cache-bin: "false"
workspaces: "backend"
- name: "Check Format" - name: "Check Format"
run: cargo fmt --check run: cargo fmt --check
- name: "Build" - name: "Build"

1
.gitignore vendored
View file

@ -1 +1,2 @@
.claude/settings.local.json .claude/settings.local.json
target/

4315
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

3
Cargo.toml Normal file
View file

@ -0,0 +1,3 @@
[workspace]
resolver = "3"
members = ["backend"]