Skip to content

updated dependencies and switched to core simd #60

updated dependencies and switched to core simd

updated dependencies and switched to core simd #60

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
defaults:
run:
working-directory: sw/rust
jobs:
check-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy
- name: Run cargo check
run: cargo check
- name: Run cargo build
run: cargo build --verbose
- name: Run cargo test
run: cargo test --verbose