fix(ci): set working-directory to ./backend for cargo commands
Some checks failed
Lint and Build / lint-and-build (push) Failing after 46s

This commit is contained in:
goose 2026-03-13 10:56:15 -03:00
parent 360095289c
commit 6938a58dc5

View file

@ -30,10 +30,13 @@ jobs:
rustup component add clippy
- name: Run Clippy
working-directory: ./backend
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Build Rust project
working-directory: ./backend
run: cargo build --release
- name: Test Rust project
working-directory: ./backend
run: cargo test --verbose