Skip to content

Upgrade to datafusion 42 #9

Upgrade to datafusion 42

Upgrade to datafusion 42 #9

Workflow file for this run

name: build
on:
push:
paths-ignore:
- "**.md"
# manual trigger
workflow_dispatch: {}
env:
RUST_BACKTRACE: "1"
jobs:
lint_code:
name: Lint / Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --check
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-targets -- -D warnings
test_linux:
name: Test / Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo test --verbose