Skip to content

deps: Update bitflags and memoffset #55

deps: Update bitflags and memoffset

deps: Update bitflags and memoffset #55

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Rust Version
run: rustc --version
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: Build no_std
run: cargo build --workspace --no-default-features
- name: Build std
run: cargo build --workspace --all-features
- name: Tests
run: cargo test --workspace --all-features