Skip to content

arducam driver

arducam driver #6

Workflow file for this run

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