Document functions in src/download.rs with comprehensive rustdocs #182
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: "Run CI" | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-test: | |
| name: Build and test ue-rs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: clippy, rustfmt | |
| - name: Rustfmt Check | |
| run: cargo fmt --all --check | |
| - name: Build ue-rs | |
| run: cargo build --workspace | |
| - name: Run unit tests | |
| run: cargo test --workspace | |
| - name: Run clippy | |
| run: cargo clippy --workspace -- --deny warnings |