Skip to content

Commit

Permalink
Run examples as part of CI (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jefffrey authored Mar 14, 2024
1 parent 1ecfdef commit e76c5cd
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,21 @@ jobs:
- name: Run cargo check
run: cargo check --workspace --all-targets ${{ matrix.features }}

examples:
name: Examples
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.RUST_TOOLCHAIN }}
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo examples
run: cargo run --example datafusion_integration

toml:
name: Toml Check
if: github.event.pull_request.draft == false
Expand Down

0 comments on commit e76c5cd

Please sign in to comment.