Skip to content

Fix Wi-Fi examples

Fix Wi-Fi examples #74

Workflow file for this run

name: Format
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: fmt-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup ESP-RS toolchain (RISC-V)
uses: esp-rs/xtensa-toolchain@v1.6
with:
default: true
ldproxy: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check formatting
run: cargo fmt --all --check