Skip to content

Update nalgebra requirement from 0.32.2 to 0.33.0 #439

Update nalgebra requirement from 0.32.2 to 0.33.0

Update nalgebra requirement from 0.32.2 to 0.33.0 #439

Workflow file for this run

name: Rust
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust stable toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build with serd
run: cargo build --all --verbose --features serde-serialize
- name: Run tests with serd
run: cargo test --all --verbose --features serde-serialize
- name: Build no features
run: cargo build --all --verbose --no-default-features
- name: Run tests no features
run: cargo test --all --verbose --no-default-features