Skip to content

Commit 749fca3

Browse files
committed
Disable lint, use unstable version of Go
1 parent 8895894 commit 749fca3

File tree

2 files changed

+22
-17
lines changed

2 files changed

+22
-17
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
uses: actions/setup-go@v2
3131
with:
3232
go-version: 1.18.0-beta2
33+
stable: false
3334

3435
- name: Check out code into the Go module directory
3536
uses: actions/checkout@v2
@@ -47,6 +48,7 @@ jobs:
4748
uses: actions/setup-go@v2
4849
with:
4950
go-version: 1.18.0-beta2
51+
stable: false
5052

5153
- name: Check out code into the Go module directory
5254
uses: actions/checkout@v2
@@ -62,20 +64,21 @@ jobs:
6264
- name: Codecov
6365
uses: codecov/codecov-action@v1
6466

65-
lint:
66-
name: Lint
67-
runs-on: ubuntu-latest
68-
steps:
69-
- name: Set up Go
70-
uses: actions/setup-go@v2
71-
with:
72-
go-version: 1.18.0-beta2
73-
74-
- name: Check out code into the Go module directory
75-
uses: actions/checkout@v2
76-
77-
- name: golangci-lint
78-
uses: golangci/golangci-lint-action@v2
79-
with:
80-
args: cli cmd m m/impl runtime transpiler x x/impl
81-
skip-go-installation: true
67+
# lint:
68+
# name: Lint
69+
# runs-on: ubuntu-latest
70+
# steps:
71+
# - name: Set up Go
72+
# uses: actions/setup-go@v2
73+
# with:
74+
# go-version: 1.18.0-beta2
75+
# stable: false
76+
#
77+
# - name: Check out code into the Go module directory
78+
# uses: actions/checkout@v2
79+
#
80+
# - name: golangci-lint
81+
# uses: golangci/golangci-lint-action@v2
82+
# with:
83+
# args: cli cmd m m/impl runtime transpiler x x/impl
84+
# skip-go-installation: true

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
uses: actions/setup-go@v2
1515
with:
1616
go-version: 1.18.0-beta2
17+
stable: false
1718

1819
- name: Check out code into the Go module directory
1920
uses: actions/checkout@v2
@@ -47,6 +48,7 @@ jobs:
4748
uses: actions/setup-go@v2
4849
with:
4950
go-version: 1.18.0-beta2
51+
stable: false
5052

5153
- name: Check out code into the Go module directory
5254
uses: actions/checkout@v2

0 commit comments

Comments
 (0)