Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Initial version of a JS -> Rust conversion trait. #2276

Closed
wants to merge 9 commits into from
Closed
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
12 changes: 8 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ jobs:
toolchain: stable
override: true
profile: minimal
- uses: actions-rs/install@v0.1
with:
crate: cargo-tarpaulin
version: latest
- uses: Swatinem/rust-cache@v2
with:
key: tarpaulin
- name: Run cargo-tarpaulin
uses: actions-rs/tarpaulin@v0.1
- name: Run tarpaulin
uses: actions-rs/cargo@v1
with:
version: 0.22.0
args: --features intl --ignore-tests --engine llvm
command: tarpaulin
args: --workspace --features intl --ignore-tests --engine llvm --out Xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v3

Expand Down
Loading