Add linelint to test EOF newline #11
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: GitLint | |
on: | |
pull_request | |
jobs: | |
gitlint: | |
runs-on: ubuntu-latest | |
name: Run gitlint against all commits in a PR | |
steps: | |
- name: Install python dependencies | |
run: | | |
pip3 install gitlint | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Setup Git (pull request) | |
if: ${{ github.base_ref }} | |
env: | |
BASE_REF: ${{ github.base_ref }} | |
run: | | |
git rebase origin/${BASE_REF} | |
git checkout -b this_pr | |
- name: Run gitlint | |
if: ${{ github.base_ref }} | |
env: | |
BASE_REF: ${{ github.base_ref }} | |
run: | | |
gitlint --commits origin/${BASE_REF}..this_pr |