fix[pallas-math]: use malachite as default
This commit is contained in:
parent
15b424f4fc
commit
73a3a73d0e
11 changed files with 835 additions and 1536 deletions
33
.github/workflows/validate.yml
vendored
33
.github/workflows/validate.yml
vendored
|
|
@ -26,16 +26,18 @@ jobs:
|
|||
toolchain: ${{ matrix.rust }}
|
||||
|
||||
- name: Run cargo check Windows
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: cargo check --no-default-features --features num
|
||||
|
||||
- name: Run cargo check
|
||||
if: matrix.os != 'windows-latest'
|
||||
run: cargo check
|
||||
|
||||
test:
|
||||
name: Test Suite
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ windows-latest, ubuntu-latest, macOS-latest ]
|
||||
rust: [ stable ]
|
||||
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
|
|
@ -48,21 +50,6 @@ jobs:
|
|||
- name: Run cargo test
|
||||
run: cargo test
|
||||
|
||||
test-windows:
|
||||
name: Test Suite Windows
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Install stable toolchain
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
toolchain: stable
|
||||
|
||||
- name: Run cargo test
|
||||
run: cargo test --no-default-features --features num
|
||||
|
||||
lints:
|
||||
name: Lints
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -80,6 +67,4 @@ jobs:
|
|||
run: cargo fmt --all -- --check
|
||||
|
||||
- name: Run cargo clippy
|
||||
run: |
|
||||
cargo clippy -- -D warnings
|
||||
cargo clippy --no-default-features --features num -- -D warnings
|
||||
run: cargo clippy -- -D warnings
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue