summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
authorClément Sibille <clement.sibille@protonmail.com>2021-10-06 22:35:40 +0200
committerGitHub <noreply@github.com>2021-10-06 22:35:40 +0200
commit6277cf1e4fef810d08af1e1f8d64778c94007236 (patch)
tree8ef10be7372c3950dec899690457f92751f84d3f /.github/workflows/rust.yml
parent0c8723d108e78ac27c3302535c8ac6325135c277 (diff)
Disable testing in github action
Unit test in Rust depends on std, since the crate is no_std we can't use it. We should find an alternative way to do it before re-enabling testing.
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r--.github/workflows/rust.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 7ae98f3..65493ed 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -18,5 +18,5 @@ jobs:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- - name: Run tests
- run: cargo test --verbose
+ #- name: Run tests
+ # run: cargo test --verbose
Go back to lisible.xyz