Merge pull request #44 from JayKickliter/jsk/disktree/add-subtree-iter #319
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: CI | |
| on: | |
| push: | |
| branches: ["*"] | |
| pull_request: | |
| branches: ["*"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions-rs/clippy-check@v1 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| args: --all-features -- -Dclippy::all | |
| - name: Build | |
| run: cargo build --all-features --benches | |
| - name: Check formatting | |
| run: cargo fmt --check | |
| - name: Tests | |
| run: cargo test --release --all-features | |
| - name: Docs | |
| run: RUSTDOCFLAGS=-Dwarnings cargo doc --document-private-items --all-features |