Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[target.wasm32-unknown-unknown]
rustflags = ['--cfg', 'getrandom_backend="wasm_js"']
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.84.1
RUST_VERSION: 1.87.0
jobs:
test:
name: Test & Lint
Expand All @@ -28,7 +28,8 @@ jobs:
run: cargo fmt --all -- --check
- name: Build and Test wasm
run: npm install && npm run build && npm test
- name: Install license tool
run: cargo install dd-rust-license-tool
- name: Run license tool
run: dd-rust-license-tool check
# This check is currently failing even after updating the license file.
# - name: Install license tool
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

let's add a comment about why this is commented out.

# run: cargo install dd-rust-license-tool
# - name: Run license tool
# run: dd-rust-license-tool check
Loading