We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c3b69 commit 964504fCopy full SHA for 964504f
.github/workflows/go.yml
@@ -13,6 +13,10 @@ jobs:
13
strategy:
14
matrix:
15
go: ["1.20", "1.21"]
16
+ rust:
17
+ - version: stable
18
+ clippy: true
19
+ - version: 1.63.0 # MSRV
20
steps:
21
- uses: actions/checkout@v3
22
@@ -21,11 +25,18 @@ jobs:
25
with:
26
go-version: ${{ matrix.go }}
23
27
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
+
24
35
- name: Build
- run: go build -v ./...
36
+ run: make all
37
38
- name: Install Linters
39
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2
40
41
- name: Test
- run: sh ./goclean.sh
42
+ run: make test
0 commit comments