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
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,24 @@ jobs:
- run: bun install --frozen-lockfile
- run: ORACLE_SAMPLES=500 bun run oracle

rust:
name: Rust
if: >-
always()
&& (github.event_name != 'pull_request'
|| needs.trust-check.outputs.trusted == 'true')
needs: [trust-check]
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- run: rustup toolchain install stable --profile minimal
- run: rustup default stable
- run: cargo fmt --all --check
- run: cargo clippy --workspace --all-targets --all-features -- -D warnings
- run: cargo test --workspace --all-targets --all-features

build:
name: Build
if: >-
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ node_modules/
dist/
.venv/
scripts/rust-oracle/target/
target/
*.tgz
dist
Loading
Loading