-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): builds and checks with and without all features
- Loading branch information
1 parent
deed850
commit ed2a8df
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,8 +63,20 @@ jobs: | |
profile: minimal | ||
override: true | ||
|
||
- name: Build ${{ matrix.crate.name }} crate | ||
- name: Build ${{ matrix.crate.name }} crate normally | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --package ${{ matrix.crate.name }} | ||
|
||
- name: Build ${{ matrix.crate.name }} crate with all features | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --package ${{ matrix.crate.name }} --all-features | ||
|
||
- name: Build ${{ matrix.crate.name }} crate with no default features | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --package ${{ matrix.crate.name }} --no-default-features |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters