Skip to content

update version for change in API from fix #32

update version for change in API from fix

update version for change in API from fix #32

Workflow file for this run

name: CI Checks
on: [push, pull_request]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_TERM_COLOR: always
jobs:
std:
name: clippy tests, fmt, run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy --tests
- run: cargo fmt -- --check
- run: cargo test --tests
xtensa:
name: clippy examples & lib, build examples
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: esp-rs/[email protected]
- run: cargo +esp clippy --target xtensa-esp32-none-elf -Z build-std=core --examples --lib
- run: cargo +esp build --release --target xtensa-esp32-none-elf -Z build-std=core --examples