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 a7e5e27 commit ded0633Copy full SHA for ded0633
.circleci/config.yml
.github/workflows/ci.yml
@@ -22,8 +22,14 @@ jobs:
22
- uses: sfackler/actions/rustfmt@master
23
24
windows:
25
- name: windows
26
- runs-on: windows-latest
+ strategy:
+ matrix:
27
+ os:
28
+ - ubuntu-latest
29
+ - windows-latest
30
+ - macos-latest
31
+ name: test-${{ matrix.os }}
32
+ runs-on: ${{ matrix.os }}
33
steps:
34
- uses: actions/checkout@v2
35
- uses: sfackler/actions/rustup@master
@@ -49,3 +55,4 @@ jobs:
49
55
key: target-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}
50
56
- run: cargo test
51
57
- run: cargo test --features alpn
58
+ - run: cargo test --features vendored
0 commit comments