Add a demo for using LVGL, DRAM, LLVM Toolchain, ELF on an STM32F746G discovery board #280
Workflow file for this run
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: Lint | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
workflow_dispatch: | |
jobs: | |
validate_format_config: | |
name: Validate Format Config | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install apt dependencies | |
run: sudo apt-get -qq update && sudo apt-get -qq -y install curl | |
- name: Compare against swift-mmio swift-format config | |
run: | | |
curl -sL https://raw.githubusercontent.com/apple/swift-mmio/refs/heads/main/.swift-format -o .swift-format-mmio | |
diff .swift-format .swift-format-mmio | |
soundness: | |
name: Soundness | |
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main | |
with: | |
api_breakage_check_enabled: false # this repo doesn't vend any API | |
license_header_check_enabled: false # feature: https://github.com/swiftlang/github-workflows/issues/78 | |
license_header_check_project_name: "Swift.org" # bug: https://github.com/swiftlang/github-workflows/issues/76 | |
unacceptable_language_check_enabled: false # unfortunately many hardware specs use terms like master/slave in their documentation |