-
Notifications
You must be signed in to change notification settings - Fork 4
57 lines (47 loc) · 1.11 KB
/
dev-ci.yml
File metadata and controls
57 lines (47 loc) · 1.11 KB
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
48
49
50
51
52
53
54
55
56
57
name: dev-ci
on:
pull_request:
branches:
- dev
jobs:
build_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.12
- name: Build StableNet
run: make gstable
lint_test:
strategy:
fail-fast: false
matrix:
version: [1.23.12]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}
- name: Check Lint
run: make lint
unit_test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.23.12
- name: Check golang Test Cases
run: make test-short