updated the series stats #11
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: Lint Files | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install apt dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y shellcheck shfmt | |
- name: Install just | |
uses: extractions/setup-just@v2 | |
- name: Verify installation | |
run: | | |
shellcheck --version | |
shfmt --version | |
just --version | |
- name: Lint Bash Files | |
run: | | |
just lint | |