Feature gate object_store and reqwest
#129
Workflow file for this run
This file contains hidden or 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: Rust | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| lint-test: | |
| name: Lint and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Rust | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: rustfmt, clippy | |
| - uses: Swatinem/rust-cache@v2 | |
| - name: Cargo fmt | |
| run: cargo fmt --all -- --check | |
| - name: "clippy --all" | |
| run: cargo clippy --all --all-features --tests -- -D warnings | |
| - name: "cargo check" | |
| run: cargo check --all --all-features | |
| - run: cargo install cargo-all-features | |
| - name: "cargo test all features" | |
| run: cargo test-all-features |