Skip to content

feat(display): added ability to display text to the screen based on s… #20

feat(display): added ability to display text to the screen based on s…

feat(display): added ability to display text to the screen based on s… #20

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
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: esp-rs/[email protected]
with:
default: true
buildtargets: esp32s3
ldproxy: true
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Create env txt files
run: |
touch api_url.txt
touch auth_token.txt
touch wifi_ssid.txt
touch wifi_password.txt
- name: Downgrade ravif
run: cargo update ravif --precise 0.11.5
- name: Downgrade bitstream-io
run: cargo update bitstream-io --precise 2.3.0
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}