i2pd: bump to 2.51.0 #808
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Shellcheck | |
on: [push, pull_request] | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Run Shellcheck. | |
run: | | |
shopt -s nullglob | |
find . -type f -name 'build' | xargs grep "^#!.*sh" | cut -d':' -f1 | xargs shellcheck | |
find . -type f -name 'post-install' | xargs grep "^#!.*sh" | cut -d':' -f1 | xargs shellcheck | |