Skip to content

Commit

Permalink
trunk deps maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
wyatt-avilla committed Jun 22, 2024
1 parent ee57883 commit e2b59b5
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build Backend
run: touch .env && cargo build --verbose
run: |
cd backend
touch .env
cargo build --verbose
- name: Build Frontend
run: cargo install trunk && cd frontend && trunk build --release
run: |
cd frontend
cargo install trunk wasm-bindgen-cli
rustup target add wasm32-unknown-unknown
trunk build --release
- name: Run tests
run: cargo test --verbose
- name: Run Clippy
Expand Down

0 comments on commit e2b59b5

Please sign in to comment.