diff options
| author | Clément Sibille <clement.sibille@protonmail.com> | 2021-10-06 22:35:40 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-06 22:35:40 +0200 | 
| commit | 6277cf1e4fef810d08af1e1f8d64778c94007236 (patch) | |
| tree | 8ef10be7372c3950dec899690457f92751f84d3f | |
| parent | 0c8723d108e78ac27c3302535c8ac6325135c277 (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.
| -rw-r--r-- | .github/workflows/rust.yml | 4 | 
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  | 
