Skip to content

Reimplement Felt::mul_mod and Felt::mod_inverse #121

Reimplement Felt::mul_mod and Felt::mod_inverse

Reimplement Felt::mul_mod and Felt::mod_inverse #121

Workflow file for this run

on: [push, pull_request]
name: Test
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install toolchain
run: rustup show
- name: Run cargo fmt
run: cargo fmt -- --check
- name: Run cargo clippy
run: cargo clippy --all-features -- -D warnings
- name: Run cargo clippy alloc
run: >
cargo clippy --no-default-features --features alloc,serde -- -D warnings
- name: Run cargo test
run: cargo test --all-features
- name: Run cargo test alloc
run: cargo test --no-default-features --features alloc,serde
no-std-build:
name: Test no_std support
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check wasm compatibility
run: |-
cd ensure_no_std
rustup show
cargo build -r