Change from ILI9341 to ST7789 #36
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
name: ui-stm32 | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- ".github/**" | |
- "ui-app/Cargo.toml" | |
- "ui-app/**.rs" | |
- "ui-stm32/Cargo.toml" | |
- "ui-stm32/**.rs" | |
pull_request: | |
branches: [ main ] | |
paths: | |
- ".github/**" | |
- "ui-app/Cargo.toml" | |
- "ui-app/**.rs" | |
- "ui-stm32/Cargo.toml" | |
- "ui-stm32/**.rs" | |
jobs: | |
build-and-test: | |
name: CI | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy, rustfmt | |
target: thumbv7em-none-eabihf | |
- name: Verify the cortex-m-stack crate | |
uses: ./.github/actions/check-crate | |
with: | |
path: ./cortex-m-stack | |
build-tests: false | |
run-tests: false | |
- name: Verify the ui-stm32 crate (ev12) | |
uses: ./.github/actions/check-crate | |
with: | |
path: ./ui-stm32 | |
build-tests: false | |
run-tests: false | |
args: --no-default-features -F ev12 | |
- name: Verify the ui-stm32 crate (ev13) | |
uses: ./.github/actions/check-crate | |
with: | |
path: ./ui-stm32 | |
build-tests: false | |
run-tests: false | |
args: --no-default-features -F ev13 |