ci: Test --no-default-features build of ectool

This commit is contained in:
Ian Douglas Scott 2021-03-04 10:38:18 -08:00 committed by Jeremy Soller
parent 325762d4d8
commit aefad937bb

View File

@ -13,6 +13,12 @@ jobs:
run: ./scripts/spdx.sh
tool:
strategy:
matrix:
include:
- features:
- features: --no-default-features
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
@ -21,7 +27,7 @@ jobs:
run: ./scripts/deps.sh
- name: Build tool
run: cargo build --release --manifest-path tool/Cargo.toml
run: cargo build ${{ matrix.features }} --release --manifest-path tool/Cargo.toml
ec:
runs-on: ubuntu-20.04