Update for building on modern systems, including Apple Silicon #1
Workflow file for this run
This file contains hidden or 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 Git Commits | |
| on: | |
| pull_request: {} | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Install GitLint | |
| run: pip install gitlint | |
| - name: Run GitLint | |
| run: gitlint --commits "${{ github.event.pull_request.base.sha }}..HEAD" |