Skip to content

Make read method on packet reader no std #159

Make read method on packet reader no std

Make read method on packet reader no std #159

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- name: Update Toolchain
run: |
rustup default ${{ matrix.toolchain }}
rustup component add --toolchain ${{ matrix.toolchain }} rustfmt
rustup component add --toolchain ${{ matrix.toolchain }} clippy
rustup update ${{ matrix.toolchain }}
- name: Build
run: cargo build --all --verbose
- name: Lint
run: cargo clippy --all --all-targets
- name: Format
run: cargo fmt --all -- --check
- name: Test
run: cargo test --all --verbose
- name: Check No Standard Library Support
run: |
rustup target add --toolchain ${{ matrix.toolchain }} thumbv7m-none-eabi
cargo install cross
cross build --package bip324 --target thumbv7m-none-eabi --no-default-features