Skip to content

Fix GitHub Actions Failure by Installing go-gitlint #61

Fix GitHub Actions Failure by Installing go-gitlint

Fix GitHub Actions Failure by Installing go-gitlint #61

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
make tools.verify.go-gitlint
- name: Run githooks
run: |
chmod +x scripts/githooks/*
scripts/githooks/pre-commit
scripts/githooks/commit-msg