7
7
pull_request :
8
8
9
9
jobs :
10
- setup :
11
- runs-on : ubuntu-latest
12
- steps :
13
- - name : Checkout code
14
- uses : actions/checkout@v4
10
+ # setup:
11
+ # runs-on: ubuntu-latest
12
+ # steps:
13
+ # - name: Checkout code
14
+ # uses: actions/checkout@v4
15
15
16
- - name : Set up Go
17
- uses : actions/setup-go@v5
18
- with :
19
- go-version-file : go.mod
16
+ # - name: Set up Go
17
+ # uses: actions/setup-go@v5
18
+ # with:
19
+ # go-version-file: go.mod
20
20
21
- build :
22
- runs-on : ubuntu-latest
23
- needs : setup
24
- steps :
25
- - name : Checkout code
26
- uses : actions/checkout@v4
21
+ # build:
22
+ # runs-on: ubuntu-latest
23
+ # needs: setup
24
+ # steps:
25
+ # - name: Checkout code
26
+ # uses: actions/checkout@v4
27
27
28
- - name : Setup Mage
29
- uses : magefile/mage-action@v3
30
- with :
31
- install-only : true
28
+ # - name: Setup Mage
29
+ # uses: magefile/mage-action@v3
30
+ # with:
31
+ # install-only: true
32
32
33
- - name : Build
34
- run : |
35
- mage -v build
33
+ # - name: Build
34
+ # run: |
35
+ # mage -v build
36
36
37
37
lint :
38
38
runs-on : ubuntu-latest
39
- needs : build
39
+ # needs: build
40
40
steps :
41
41
- uses : actions/checkout@v4
42
42
@@ -55,23 +55,23 @@ jobs:
55
55
run : |
56
56
mage -v lint
57
57
58
- test :
59
- runs-on : ubuntu-latest
60
- needs : lint
61
- steps :
62
- - name : Checkout code
63
- uses : actions/checkout@v4
58
+ # test:
59
+ # runs-on: ubuntu-latest
60
+ # needs: lint
61
+ # steps:
62
+ # - name: Checkout code
63
+ # uses: actions/checkout@v4
64
64
65
- - name : Install dependencies
66
- run : |
67
- sudo apt update
68
- sudo apt install -y gcc
65
+ # - name: Install dependencies
66
+ # run: |
67
+ # sudo apt update
68
+ # sudo apt install -y gcc
69
69
70
- - name : Setup Mage
71
- uses : magefile/mage-action@v3
72
- with :
73
- install-only : true
70
+ # - name: Setup Mage
71
+ # uses: magefile/mage-action@v3
72
+ # with:
73
+ # install-only: true
74
74
75
- - name : Test
76
- run : |
77
- CGO_ENABLED=1 mage -v testRace
75
+ # - name: Test
76
+ # run: |
77
+ # CGO_ENABLED=1 mage -v testRace
0 commit comments