Skip to content

build(deps): bump zerocopy from 0.7.32 to 0.7.33 #24

build(deps): bump zerocopy from 0.7.32 to 0.7.33

build(deps): bump zerocopy from 0.7.32 to 0.7.33 #24

Workflow file for this run

name: lms
on:
pull_request:
paths:
- ".github/workflows/lms.yml"
- "lms/**"
- "Cargo.*"
push:
branches: master
defaults:
run:
working-directory: lms
env:
CARGO_INCREMENTAL: 0
RUSTFLAGS: "-Dwarnings"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.73.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- run: cargo check --all-features
- run: cargo test --no-default-features
- run: cargo test
- run: cargo test --all-features