Skip to content

remove unused var PACKAGE=engine-stressor #1

remove unused var PACKAGE=engine-stressor

remove unused var PACKAGE=engine-stressor #1

Workflow file for this run

uname: ShellCheck Check

Check failure on line 1 in .github/workflows/shellcheck.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/shellcheck.yml

Invalid workflow file

The workflow is not valid. .github/workflows/shellcheck.yml (Line: 1, Col: 1): Unexpected value 'uname'
on:
push:
branches:
- main
pull_request:
jobs:
shellcheck-security-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck on all scripts
run: |
find . -name "*.sh" -print0 | xargs -0 shellcheck -x || exit 255