From 0fd6ef8817baae36dea68728bde4333a4b9eeaa7 Mon Sep 17 00:00:00 2001 From: Matthew Kaminski Date: Sun, 18 Aug 2024 15:40:22 -0400 Subject: [PATCH] Fix build, test out clippy --- .github/workflows/github-actions-demo.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index f6cf1cb..4000ab9 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -42,5 +42,10 @@ jobs: run: npm install -D tailwindcss - name: Compile css run: npm run build + # TODO -> Remove wasm-opt-version once perseus is updated - name: Build the project - run: perseus deploy + run: perseus --wasm-opt-version version_118 deploy + - name: Run clippy for server + run: RUSTFLAGS="--cfg=engine" cargo clippy -all + - name: Run clippy for frontend + run: RUSTFLAGS="--cfg=client" cargo clippy --all