Add a trace level to test CI task

To enable to get stack trace on CI, add a `RUST_BACKTRACE` env
variable. It is useful to debug.

Some rust projects applied this parameter. e.g. deno
https://github.com/denoland/deno/blob/main/.github/workflows/ci.yml#L54
pull/366/head
Shunsuke Mie 3 years ago committed by Arijit Basu
parent 947cfeb327
commit a3b400d749

@ -39,6 +39,8 @@ jobs:
name: Test Suite
runs-on: ubuntu-latest
needs: prepare
env:
RUST_BACKTRACE: full
steps:
- uses: actions/checkout@master
- uses: actions-rs/toolchain@v1

Loading…
Cancel
Save