Fix cargo patch paths #14
This file contains 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
name: Continuous Integration | |
on: | |
push: | |
paths-ignore: | |
- "**/README.md" | |
pull_request: | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
rust-checks: | |
name: Rust Checks | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
action: | |
- command: build | |
args: --release | |
# - command: fmt | |
# args: --all -- --check --color always | |
# - command: clippy | |
# args: --all-targets --all-features --workspace -- -D warnings | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Submodule Init | |
uses: snickerbockers/submodules-init@v4 | |
- name: Setup Rust | |
uses: esp-rs/[email protected] | |
with: | |
default: true | |
buildtargets: esp32 | |
ldproxy: true | |
- name: Enable caching | |
uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: "true" | |
# - name: Patch idf-svc | |
# run: cargo run --manifest-path ./cargo-patch-crate-fork/Cargo.toml --target x86_64-unknown-linux-gnu | |
- name: Run command | |
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} |