Add sym link to rust-toolchain.toml
to fix rust-analyzer errors
#123
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- "**" | |
tags-ignore: | |
- "v*" | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint | |
run: cargo clippy --all-features -- -D warnings | |
- name: Tests | |
run: cargo test --all-features -- --test-threads=1 | |
- name: Docs | |
run: RUSTDOCFLAGS="-D warnings" cargo doc --all-features --no-deps |