Skip to content

Try: fix CI

Try: fix CI #117

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 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 --verbose
- name: Format
run: cargo fmt --all -- --check
- name: Test
run: cargo test --workspace --all-features --verbose
- name: Clippy
run: cargo clippy --workspace --all-features --examples --tests -- -D warnings