Skip to content

Upgrade dependencies #110

Upgrade dependencies

Upgrade dependencies #110

Workflow file for this run

name: Git Lint
on:
pull_request:
branches:
- "*"
jobs:
lint:
name: Git Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Install Gitlint
shell: bash
run: python -m pip install gitlint
- name: Run Gitlint
shell: bash
run: gitlint --commits "${{ github.event.pull_request.base.sha }}..HEAD"