Refactor code style, add links to js versions #458
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
- run: cargo install cargo-tarpaulin | |
- run: cargo tarpaulin --features json --out xml | |
- uses: codecov/codecov-action@v4 | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
components: clippy, rustfmt | |
toolchain: stable | |
- run: cargo fmt --check && cargo clippy --all-features --all-targets --workspace | |
- run: cargo test --all-features --workspace | |
name: main | |
on: | |
- pull_request | |
- push |