Skip to content

add HasRowChunksExact trait and friends #18

add HasRowChunksExact trait and friends

add HasRowChunksExact trait and friends #18

Workflow file for this run

name: build
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
std-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build (no std, no alloc)
run: cargo build --no-default-features
- name: Build (no std)
run: cargo build --no-default-features --features alloc
- name: Build
run: cargo build
- name: Test
run: cargo test
nostd-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install ARM target
run: rustup target add thumbv7em-none-eabihf
- name: Build
run: cargo build --no-default-features --target thumbv7em-none-eabihf