ESP Flasher: add c3 and c6 to s3 option #68
Workflow file for this run
This file contains 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: | |
pull_request: | |
env: | |
SET_GH_OUTPUT: 1 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout firmware" | |
uses: actions/checkout@v4 | |
with: | |
repository: Next-Flip/Momentum-Firmware | |
fetch-depth: 1 | |
ref: dev | |
submodules: recursive | |
- name: "Checkout apps" | |
uses: actions/checkout@v4 | |
with: | |
path: applications/external | |
fetch-depth: 1 | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: "Check formatting" | |
run: | | |
git add applications/external | |
./fbt lint_all |