Skip to content

try

try #266

Workflow file for this run

# name: CI
# on:
# push:
# pull_request:
# env:
# CARGO_TERM_COLOR: always
# jobs:
# test:
# name: Test
# runs-on: ubuntu-latest
# steps:
# - name: Dependencies
# run: sudo apt-get update && sudo apt-get install -y build-essential pkg-config libclang-dev libgdal-dev
# - name: Checkout
# uses: actions/checkout@v4
# - name: Setup
# run: docker compose up db minio minio-mc -d
# - name: Build
# run: rustup update stable && rustup default stable && cargo build --workspace --all-targets
# - name: Format
# run: cargo fmt --all -- --check
# - name: Clippy
# run: cargo clippy --workspace --all-features --all-targets -- -D warnings
# - name: Test
# run: cargo test --workspace --all-features --all-targets