Add ESP32 Wifi Station Mode #188
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2026 Roman Valls Guimera <brainstorm@nopcode.org> | |
| # | |
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| name: Std tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| packer: | |
| name: OTA tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Stable Rust Toolchain | |
| uses: dtolnay/rust-toolchain@v1 | |
| with: | |
| target: riscv32imac-unknown-none-elf | |
| toolchain: stable | |
| - name: Package test | |
| run: cargo test-ota |