This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create build.yml * Update build.yml * Create lint.yml
- Loading branch information
1 parent
b68c8f3
commit cf05c49
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Build test FAP with library | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout test app | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: oleksiikutuzov/flipperzero-BH1750-test | ||
|
||
- name: Checkout library | ||
uses: actions/checkout@v3 | ||
with: | ||
path: lib/BH1750 | ||
|
||
- name: Build | ||
uses: oleksiikutuzov/flipperzero-ufbt-action@v2 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Lint test FAP with library | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout test app | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: oleksiikutuzov/flipperzero-BH1750-test | ||
|
||
- name: Checkout library | ||
uses: actions/checkout@v3 | ||
with: | ||
path: lib/BH1750 | ||
|
||
- name: Lint | ||
uses: oleksiikutuzov/flipperzero-ufbt-action@v2 | ||
with: | ||
lint_only: true |