-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (35 loc) · 984 Bytes
/
validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# This workflow will validate a golang project
name: Validate
on:
push:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
check-latest: true
- name: Set up Python
uses: actions/setup-python@v5
- name: Setup Node
uses: actions/setup-node@v4
- name: Add GOBIN to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Install staticcheck
run: "go install 'honnef.co/go/tools/cmd/staticcheck@latest'"
- name: Run pre-commit
uses: pre-commit/[email protected]
- name: Install commitlint
run: "npm install -g @commitlint/cli @commitlint/config-conventional"
- name: Lint last commit message
run: "commitlint --from HEAD~1 --to HEAD --verbose"