add gitlint and shellcheck to action (#43) #2
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: Gitlint | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
gitlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
# Check out at the last commit (pre-automated merge, we don't care about the temporary commit for linting) | |
ref: ${{ github.event.pull_request.head.sha }} | |
# Get all history | |
fetch-depth: 0 | |
- name: Install gitlint | |
shell: bash | |
run: | | |
python -m pip install gitlint | |
- name: Run gitlint | |
shell: bash | |
run: | | |
# Lint everything from the base to the latest | |
gitlint --commits "${{ github.event.pull_request.base.sha }}..HEAD" |