Enable all features in all CIs.

This commit is contained in:
Sebastian Schmidt 2021-06-02 18:17:05 +03:00
parent c297e2fd6e
commit 6e5b69294b

View File

@ -14,24 +14,24 @@ jobs:
command: command:
- name: Check - name: Check
command: check command: check
args: "" args: --all-features
components: "" components: ""
- name: Test - name: Test
command: test command: test
args: "" args: --all-features
components: "" components: ""
include: include:
- toolchain: nightly - toolchain: nightly
command: command:
name: Format name: Format
command: fmt command: fmt
args: -- --check args: --all-features -- --check
components: rustfmt components: rustfmt
- toolchain: stable - toolchain: stable
command: command:
name: Lint name: Lint
command: clippy command: clippy
args: "" args: --all-features
components: clippy components: clippy
steps: steps: