File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " FAP: Build and lint"
2+ on : [push, pull_request]
3+ jobs :
4+ ufbt-build-action :
5+ runs-on : ubuntu-latest
6+ name : ' ufbt: Build for Dev branch'
7+ steps :
8+ - name : Checkout
9+ uses : actions/checkout@v3
10+ - name : Build with ufbt
11+ uses :
flipperdevices/[email protected] 12+ id : build-app
13+ with :
14+ # Set to 'release' to build for latest published release version
15+ sdk-channel : release
16+ - name : Upload app artifacts
17+ uses : actions/upload-artifact@v3
18+ with :
19+ name : ${{ github.event.repository.name }}-${{ steps.build-app.outputs.suffix }}
20+ path : ${{ steps.build-app.outputs.fap-artifacts }}
21+ # You can remove this step if you don't want to check source code formatting
22+ - name : Lint sources
23+ uses :
flipperdevices/[email protected] 24+ with :
25+ # skip SDK setup, we already did it in previous step
26+ skip-setup : true
27+ task : lint
You can’t perform that action at this time.
0 commit comments