**Actually** don't build examples with MSRV on CI

:|

Former-commit-id: 7a8e1e0e3d
This commit is contained in:
Waffle Maybe 2022-07-04 19:34:11 +04:00 committed by GitHub
parent 3615004729
commit 088d5f9912

View file

@ -102,11 +102,12 @@ jobs:
- name: Cache Dependencies
uses: Swatinem/rust-cache@v1
# NB. Don't test (build) examples so we can use non-msrv features in them (--tests/--doc)
- name: Compile
uses: actions-rs/cargo@v1
with:
command: test
args: --no-run --verbose ${{ matrix.features }}
args: --tests --no-run --verbose ${{ matrix.features }}
- name: Setup redis
run: |
@ -115,7 +116,6 @@ jobs:
redis-server --port 7778 > /dev/null &
redis-server --port 7779 > /dev/null &
# NB. Don't test (build) examples so we can use non-msrv features in them
- name: Test unit & integration tests
uses: actions-rs/cargo@v1
with: