egel is testing out GitHub Actions π #3
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: GitHub Actions | |
run-name: ${{ github.actor }} is testing out GitHub Actions π | |
on: [push] | |
jobs: | |
lint-scripts: | |
runs-on: ubuntu-latest | |
steps: | |
- name: install shfmt | |
run: sudo apt-get install -y shfmt shellcheck | |
- name: checkout repo | |
uses: actions/checkout@main | |
- name: lint files against shellcheck | |
run: make check_scripts |