Skip to content

Commit 964504f

Browse files
committed
main: try to fix github workflows
1 parent 17c3b69 commit 964504f

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/go.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ jobs:
1313
strategy:
1414
matrix:
1515
go: ["1.20", "1.21"]
16+
rust:
17+
- version: stable
18+
clippy: true
19+
- version: 1.63.0 # MSRV
1620
steps:
1721
- uses: actions/checkout@v3
1822

@@ -21,11 +25,18 @@ jobs:
2125
with:
2226
go-version: ${{ matrix.go }}
2327

28+
- name: Install Rust toolchain
29+
uses: actions-rs/toolchain@v1
30+
with:
31+
toolchain: ${{ matrix.rust.version }}
32+
override: true
33+
profile: minimal
34+
2435
- name: Build
25-
run: go build -v ./...
36+
run: make all
2637

2738
- name: Install Linters
2839
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2
2940

3041
- name: Test
31-
run: sh ./goclean.sh
42+
run: make test

0 commit comments

Comments
 (0)