Skip to content

Fix GitHub Actions run by ensuring go-gitlint tool is installed #11

Fix GitHub Actions run by ensuring go-gitlint tool is installed

Fix GitHub Actions run by ensuring go-gitlint tool is installed #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Install go-gitlint
run: make tools.verify.go-gitlint
- name: Run githooks
run: ./scripts/githooks/commit-msg