Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
placintaalexandru committed Nov 14, 2023
1 parent 5b439a2 commit 3d2e080
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test_components_input.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ jobs:

- name: Test clippy exists
run: |
test $(rustup component list | grep clippy) = 1
test $(rustup component list | grep clippy | wc -l) = 1
- name: Test miri exists
run: |
test $(rustup component list | grep clippy) = 1
test $(rustup component list | grep clippy | wc -l) = 1
- name: Test llvm exists
run: |
test $(rustup component list | grep llvm) = 1
test $(rustup component list | grep llvm | wc -l) = 1
install_in_docker:
name: Components (docker)
runs-on: ubuntu-latest
Expand All @@ -78,12 +78,12 @@ jobs:

- name: Test clippy exists
run: |
test $(rustup component list | grep clippy) = 1
test $(rustup component list | grep clippy | wc -l) = 1
- name: Test miri exists
run: |
test $(rustup component list | grep clippy) = 1
test $(rustup component list | grep clippy | wc -l) = 1
- name: Test llvm exists
run: |
test $(rustup component list | grep llvm) = 1
test $(rustup component list | grep llvm | wc -l) = 1

0 comments on commit 3d2e080

Please sign in to comment.