check without colors in ci

This commit is contained in:
Robin Appelman 2021-04-29 18:32:02 +02:00
commit 3305bffc10

View file

@ -17,6 +17,22 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: check
check-no-default-features:
name: Check --no-default-features
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features
test:
runs-on: ubuntu-latest