Skip to content

Commit

Permalink
add dummy line to trigger pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
HerrMuellerluedenscheid committed Jan 16, 2022
1 parent 3665ea0 commit c76dad7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/oe-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,18 @@ jobs:
uses: tj-actions/changed-files@v11.3

- 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
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Collection of layers for the OE-core universe

Main layer maintainer: Khem Raj <raj.khem@gmail.com>

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ inherit setuptools3
SRC_URI[md5sum] = "ebf3bbb7716a7b11029e860475b9a122"
SRC_URI[sha256sum] = "3339ff0e03dee13045aef6ae7b523edff75b6d726adf7a7a48f53d5a501f7db7"


RDEPENDS:${PN} += "\
${PYTHON_PN}-sqlparse \
"

0 comments on commit c76dad7

Please sign in to comment.