Merge pull request #145 from kubecub/sweep/gh-actions-failure_2 #89
This file contains 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: Setup | |
on: [push, pull_request] | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install go-gitlint | |
run: | | |
go install github.com/llorllale/go-gitlint/cmd/go-gitlint@latest | |
mkdir -p ./_output/tools/ | |
cp $(go env GOPATH)/bin/go-gitlint ./_output/tools/ | |
- name: Setup Git hooks | |
run: | | |
cp scripts/githooks/commit-msg .git/hooks/ | |
cp scripts/githooks/pre-commit .git/hooks/ | |
- name: Add files | |
run: git add . |