Skip to content

chore: bump Rust geodatafusion to 0.3 #123

chore: bump Rust geodatafusion to 0.3

chore: bump Rust geodatafusion to 0.3 #123

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-test-all-features:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: Clippy
run: cargo clippy --all-features --tests -- -D warnings
- name: Check
run: cargo check --all-features
- name: Test
run: cargo test --all-features
fmt:
name: Fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2025-05-14
components: rustfmt
- name: Fmt
run: cargo +nightly-2025-05-14 fmt -- --check --unstable-features --config imports_granularity=Module,group_imports=StdExternalCrate
docs-no-warnings:
name: Test docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: "recursive"
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
# Note: in the future expand to all crates in the workspace
- name: Test that docs build without warnings
run: cargo doc --all-features --document-private-items
env:
RUSTDOCFLAGS: "-D warnings"