WIP: init jekyll upgrade #7
Workflow file for this run
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: Check all shell scripts | |
on: pull_request | |
jobs: | |
shellcheck: | |
name: Run shellcheck on shell scripts | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install dependencies | |
run: sudo apt-get update -y && sudo apt-get install -y shellcheck | |
- name: Run shellcheck | |
run: make check |