Skip to content

Commit

Permalink
Merge pull request #65 from luckylat/action/remove-rust
Browse files Browse the repository at this point in the history
fix(action): remove rust action
  • Loading branch information
luckylat authored Nov 16, 2023
2 parents 9a71f48 + 56131b7 commit 53f4dd9
Showing 1 changed file with 18 additions and 23 deletions.
41 changes: 18 additions & 23 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 53f4dd9

Please sign in to comment.