build(deps): bump num-traits from 0.2.18 to 0.2.19 #210
Workflow file for this run
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
name: build | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build --all-features --verbose | |
- name: Run tests | |
run: cargo test --all-features --verbose | |
- name: Build documentation | |
run: cargo doc --all-features --verbose | |
- name: Run examples | |
run: cargo run --example=pendulum && cargo run --example=pendulum_sparse | |
- name: Build no-std version | |
run: cargo build --no-default-features --features=uuid --verbose | |
- name: Test no-std version | |
run: cargo test --no-default-features --features=uuid --verbose | |
- name: Build no-std documentation | |
run: cargo doc --no-default-features --features=uuid --verbose | |
- name: Run examples in no-std mode | |
run: cargo run --example=pendulum --no-default-features && cargo run --example=pendulum_sparse --features=uuid --no-default-features |