Make read method on packet reader no std #157
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: 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 | |