-
Notifications
You must be signed in to change notification settings - Fork 19
42 lines (35 loc) · 807 Bytes
/
ci.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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: Check go mod
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: go build
run: go build -v
- name: go test
run: go test -test.v -race -cover ./...
conventional-commits:
if: github.event_name == 'pull_request' # Only check PRs.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: pip3 install -U Commitizen
- run: cz check --rev-range origin/${{ github.base_ref }}..HEAD