Add support for including private classes, methods, fields. #46
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 - Nightly | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| merge_group: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build_and_test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: rustup update nightly && rustup default nightly | |
| - run: rustup component add rustfmt | |
| - run: rustup component add clippy | |
| - name: Check fmt | |
| run: cargo fmt -- --check | |
| - name: Clippy | |
| run: cargo clippy -- -Dwarnings | |
| - name: Test | |
| run: cargo test |