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 1baa3f8 commit daee58dCopy full SHA for daee58d
.github/workflows/ci.yml
@@ -10,6 +10,9 @@ jobs:
10
check:
11
name: check
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ env: [ '', 'RUST_PROTOBUF=1' ]
16
steps:
17
- uses: actions/checkout@v2
18
- uses: actions-rs/toolchain@v1
@@ -24,10 +27,8 @@ jobs:
24
27
repo-token: ${{ secrets.GITHUB_TOKEN }}
25
28
- name: Rust Cache
26
29
uses: Swatinem/[email protected]
- - uses: actions-rs/cargo@v1
- with:
- command: check
30
- args: --all-targets --all-features
+ - name: make check
31
+ run: ${{ matrix.env }} make check
32
33
fmt:
34
name: rustfmt
0 commit comments