Skip to content

feat: modem interface with AT command parsing #9

feat: modem interface with AT command parsing

feat: modem interface with AT command parsing #9

Workflow file for this run

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: --workspace -- -D warnings
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: esp-rs/[email protected]
with:
default: true
buildtargets: esp32
ldproxy: true
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Create dummy config.yml
run: |
cat << EOF > config.yml
mqtt_endpoint: mqtt://nowhere.arpa
availability_topic: none
ota_topic: none
entities: []
EOF
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}