-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3665ea0
commit c76dad7
Showing
3 changed files
with
11 additions
and
3 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 |
---|---|---|
|
@@ -24,11 +24,18 @@ jobs: | |
uses: tj-actions/[email protected] | ||
|
||
- name: Install linters | ||
run: pip3 install oelint-adv | ||
run: pip3 install oelint-adv codespell | ||
|
||
- name: Linting all modified files | ||
run: | | ||
for file in ${{ steps.changed-files.outputs.all_modified_files }}; do | ||
echo "linting $file" | ||
oelint-adv --quiet --color --rulefile=oelint-rulefile.json $file | ||
oelint-adv --quiet --color --relpaths --rulefile=oelint-rulefile.json $file | ||
done | ||
- name: Codespell | ||
run: | | ||
for file in ${{ steps.changed-files.outputs.all_modified_files }}; do | ||
echo "spell checking $file" | ||
codespell $file | ||
done |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ Collection of layers for the OE-core universe | |
|
||
Main layer maintainer: Khem Raj <[email protected]> | ||
|
||
This repository is a collection of layers to suppliment OE-Core | ||
This repository is a collection of layers to supplement OE-Core | ||
with additional packages, Each layer have designated maintainer | ||
Please see the respective READMEs in the layer subdirectories | ||
|
||
|
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