-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from luckylat/action/remove-rust
fix(action): remove rust action
- Loading branch information
Showing
1 changed file
with
18 additions
and
23 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 |
---|---|---|
|
@@ -26,37 +26,32 @@ jobs: | |
- name: Install dependencies (Haskell) | ||
uses: actions/setup-haskell@v1 | ||
|
||
# required only if you want to verify Java code | ||
# - name: Install dependencies (Java) | ||
# uses: actions/setup-java@v1 | ||
# with: | ||
# java-version: 11 | ||
|
||
# required only if you want to verify Go code | ||
- name: Install dependencies (Go) | ||
uses: actions/setup-go@v3 | ||
|
||
- name: Set up Rust (1.42.0) | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: 1.42.0-x86_64-unknown-linux-gnu | ||
default: true | ||
profile: minimal | ||
# | ||
#- name: Set up Rust (1.42.0) | ||
# uses: actions-rs/toolchain@v1 | ||
# with: | ||
# toolchain: 1.42.0-x86_64-unknown-linux-gnu | ||
# default: true | ||
# profile: minimal | ||
|
||
# required by cargo-udeps | ||
- name: Set up Rust (nightly) | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly-x86_64-unknown-linux-gnu | ||
default: true | ||
profile: minimal | ||
#- name: Set up Rust (nightly) | ||
# uses: actions-rs/toolchain@v1 | ||
# with: | ||
# toolchain: nightly-x86_64-unknown-linux-gnu | ||
# default: true | ||
# profile: minimal | ||
|
||
# required only if you set `languages.rust.list_dependencies_backend.kind` to `"cargo-udeps"` | ||
- name: Install cargo-udeps for Rust | ||
uses: actions-rs/[email protected] | ||
with: | ||
crate: cargo-udeps | ||
use-tool-cache: true | ||
#- name: Install cargo-udeps for Rust | ||
# uses: actions-rs/[email protected] | ||
# with: | ||
# crate: cargo-udeps | ||
# use-tool-cache: true | ||
|
||
- name: Run tests | ||
env: | ||
|