Skip to content

chore: bump indexmap and use edition=2021 #53

chore: bump indexmap and use edition=2021

chore: bump indexmap and use edition=2021 #53

Workflow file for this run

name: Build
on:
push:
branches: [ "*" ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
TARGET: thumbv6m-none-eabi
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: rustup target add $TARGET
- name: Build
run: cargo build --verbose
- name: Build with serde
run: cargo build --verbose --features serde
- name: Build for no-std
run: cargo build -v -p test-nostd --target=$TARGET