Skip to content

Change a million things #23

Change a million things

Change a million things #23

Workflow file for this run

name: Continuous Integration
on:
pull_request:
paths-ignore:
- "**/README.md"
- "proxy/**"
# workflow_dispatch:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
defaults:
run:
working-directory: esp
jobs:
rust-checks:
name: Rust Checks (esp)
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: Enable caching
uses: Swatinem/rust-cache@v2
- name: Setup Rust
uses: esp-rs/[email protected]
with:
default: true
buildtargets: esp32
ldproxy: true
- name: Setup config
run: cp src/config.rs.sample src/config.rs
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}