Allow integer for feature id #165
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |