name: test
on:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build
run:
cargo build --release --verbose
- name: Run tests
run:
cargo test --release --verbose
- name: Build for u128
run:
cargo build --release --verbose --no-default-features --features=u128
- name: Run tests for u128
run:
cargo test --release --verbose --no-default-features --features=u128