Skip to content

allow to convert uuid::Uuid value to BleUuid #90

allow to convert uuid::Uuid value to BleUuid

allow to convert uuid::Uuid value to BleUuid #90

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- target: riscv32imc-esp-espidf
idf-version: release/v4.4
rustflags: "-C default-linker-libraries"
- target: riscv32imc-esp-espidf
idf-version: release/v5.0
rustflags: "-C default-linker-libraries --cfg espidf_time64"
- target: xtensa-esp32-espidf
idf-version: release/v4.4
- target: xtensa-esp32-espidf
idf-version: release/v5.0
rustflags: "--cfg espidf_time64"
steps:
- name: Setup | Checkout
uses: actions/checkout@v3
- name: Install Rust for Xtensa
uses: esp-rs/xtensa-toolchain@v1.5
with:
default: true
ldproxy: true
- name: Build
env:
ESP_IDF_VERSION: ${{ matrix.idf-version }}
RUSTFLAGS: "${{ matrix.rustflags }}"
run: cargo build --target ${{ matrix.target }} --examples
- name: Fmt check
run: cargo fmt --check
- name: Clippy check
env:
ESP_IDF_VERSION: ${{ matrix.idf-version }}
RUSTFLAGS: "${{ matrix.rustflags }}"
run: cargo clippy --target ${{ matrix.target }} --all-features -- -D clippy::all -W clippy::nursery