Skip to content

Merge pull request #60 from Jupeyy/pr_posix #84

Merge pull request #60 from Jupeyy/pr_posix

Merge pull request #60 from Jupeyy/pr_posix #84

Workflow file for this run

name: Shellcheck
on: [push, pull_request]
jobs:
ubuntu:
name: Lint all shell scripts
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Prepare
run: |
sudo apt-get update -y
sudo apt-get install shellcheck -y
- name: Shellcheck
run: find . -type f -name '*.sh' -print0 | xargs -0 shellcheck