Bump nalgebra dependency to 0.33 #21
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: newton_rootfinder CI build | |
on: | |
push: | |
branches: [ development, main ] | |
pull_request: | |
branches: [ development, main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check-fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check formatting | |
run: cargo fmt -- --check | |
build-nrf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: cargo build | |
- name: Build additional_log_info | |
run: cargo build --features additional_log_info | |
- name: Build xml_config_file | |
run: cargo build --features xml_config_file | |
test-nrf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: test | |
run: cargo test; cargo test --all-features; | |
doc-nrf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: doc | |
run: cargo doc --no-deps; cargo doc --no-deps --all-features; | |