release: v0.2.1 #24
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: | |
| pull_request: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| # TS side only: the Rust core is macOS-only (security-framework, tray-icon, | |
| # window-vibrancy), so `cargo test` can't compile here — and macOS runners | |
| # starve in the queue. The Rust half runs locally on every commit via the | |
| # dobby gate's `cargo test` extra instead. | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install | |
| # Not plain `dobby check`: that would also run the cargo-test extra from | |
| # dobby.config.json, which cannot compile on Linux. | |
| - run: bunx dobby check --lint --types --unused --build |