Skip to content

Merge pull request #1 from jhklarcher/feature/dremio-full-support #3

Merge pull request #1 from jhklarcher/feature/dremio-full-support

Merge pull request #1 from jhklarcher/feature/dremio-full-support #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all --all-targets