8000 tests: remove duplicate code from run_tests.sh · tinyproxy/tinyproxy@ead1754 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ci: add Shellcheck workflow #7

ci: add Shellcheck workflow

ci: add Shellcheck workflow #7

Workflow file for this run

name: shellcheck
on:
push:
branches:
- master
pull_request:
paths-ignore:
branches:
- master
# cancel the in-progress workflow when PR is refreshed.
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install shellcheck
run: |

Check failure on line 26 in .github/workflows/shellcheck.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/shellcheck.yaml

Invalid workflow file

You have an error in your yaml syntax on line 26
sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: make shellcheck
0