forked from initia-labs/opinit-bots
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 857 Bytes
/
test.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: Build & Test
on:
pull_request:
paths:
- "**.go"
push:
branches:
- main
- "release/*"
paths:
- "**.go"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Run test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Install openssl
run: sudo apt-get install libssl-dev
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v4
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- name: build
run: |
make build
- name: test
if: env.GIT_DIFF
run: |
go test ./... -mod=readonly -timeout 12m
env:
GIT_DIFF: ${{ env.GIT_DIFF }}