Implement thread name and ids #87
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
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - "*" | |
| pull_request: | |
| name: CI | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| components: "clippy, rustfmt" | |
| # make sure all code has been formatted with rustfmt | |
| - name: check rustfmt | |
| run: | | |
| rustup component add rustfmt | |
| cargo fmt -- --check --color always | |
| # run clippy to verify we have no warnings | |
| - run: cargo fetch | |
| - name: cargo clippy | |
| run: | | |
| rustup component add clippy | |
| cargo clippy --all-targets --all-features -- -D warnings | |
| test: | |
| name: Test | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04, windows-2022, macos-14] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo fetch | |
| - name: cargo test build | |
| run: cargo build --tests | |
| - name: cargo test | |
| run: cargo test | |
| - name: cargo test build ansi | |
| run: cargo build --tests --features ansi_logs | |
| - name: cargo test ansi | |
| run: cargo test --features ansi_logs | |
| deny-check: | |
| name: cargo-deny | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: EmbarkStudios/cargo-deny-action@v2 | |
| publish-check: | |
| name: Publish Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - run: cargo fetch | |
| - name: cargo publish check | |
| run: cargo publish --dry-run |