Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,29 @@ jobs:
ghcr.io/gitleaks/gitleaks:v8.30.1 \
git --redact --no-banner /repo

# Independent of the Bun job: the experimental `pickforge` Rust binary has no
# shared toolchain or artifacts with the TypeScript packages.
rust:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy

- uses: Swatinem/rust-cache@v2

- run: cargo fmt --check

- run: cargo clippy --workspace --all-targets --locked -- -D warnings

- run: cargo test --workspace --locked

test:
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ coverage/
packages/cli/README.md
packages/cli/LICENSE
packages/cli/*.tgz
/target/
Loading
Loading