[27] Bugfix - Horizontal flip when switching between camera apps. #37
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: "Build test + lint." | |
on: pull_request | |
jobs: | |
ufbt-build-action: | |
runs-on: ubuntu-latest | |
name: "ufbt: Build for Dev branch" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build with ufbt | |
# Flipper Zero ufbt action | |
# https://github.com/flipperdevices/flipperzero-ufbt-action | |
uses: flipperdevices/[email protected] | |
id: build-app | |
with: | |
app-dir: ./fap | |
sdk-channel: dev | |
- name: Lint sources | |
uses: flipperdevices/[email protected] | |
with: | |
skip-setup: true | |
task: lint |