Disable near #48
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: Test | |
on: [pull_request, push] | |
jobs: | |
checks-and-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Display rust toolchain | |
run: rustup show | |
- name: Check all features compilation | |
run: cargo check --verbose --all-features | |
- name: Run all tests | |
run: cargo test --all-features |