-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: remove action-rs because it is no longer maintained
- Loading branch information
Showing
2 changed files
with
8 additions
and
32 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 |
---|---|---|
|
@@ -30,22 +30,10 @@ jobs: | |
toolchain: ${{ matrix.rust }} | ||
- run: rustup override set ${{ steps.toolchain.outputs.name }} | ||
- name: Build all features | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --all-targets --all-features | ||
run: cargo build --all-targets --all-features | ||
- name: Build no default features | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --all-targets --no-default-features | ||
run: cargo build --all-targets --no-default-features | ||
- name: Build s3-storage | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --all-targets --features s3-storage | ||
run: cargo build --all-targets --features s3-storage | ||
- name: Build url-storage | ||
uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
args: --all-targets --features url-storage | ||
run: cargo build --all-targets --features url-storage |
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