No fzf #23
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
shell-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install shfmt | |
run: sudo snap install shfmt | |
- name: Check shell script formatting | |
run: shfmt -d . | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Install shellcheck | |
run: sudo apt install shellcheck | |
- name: Static analysis of shell script | |
run: shellcheck setup.sh |