ci: enable ShellCheck warnings
Enable ShellCheck at the warning level.
This commit is contained in:
parent
b8f991e386
commit
f4c850d7d0
1 changed files with 11 additions and 0 deletions
11
.github/workflows/ci.yml
vendored
11
.github/workflows/ci.yml
vendored
|
|
@ -28,3 +28,14 @@ jobs:
|
||||||
pytest --cov-report=xml --cov=osbuild test/unit/
|
pytest --cov-report=xml --cov=osbuild test/unit/
|
||||||
- name: Send coverage to codecov.io
|
- name: Send coverage to codecov.io
|
||||||
run: bash <(curl -s https://codecov.io/bash)
|
run: bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
|
shellcheck:
|
||||||
|
name: "Shellcheck"
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: "Clone Repository"
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: "Run ShellCheck"
|
||||||
|
uses: ludeeus/action-shellcheck@0.5.0
|
||||||
|
with:
|
||||||
|
severity: warning
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue