feat: oblique lon lat transformation (#7) #40
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: Run tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Prepare environment | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install clang | |
| sudo apt-get install libclang1 | |
| sudo apt-get install libproj-dev | |
| sudo apt-get install libtiff-dev | |
| sudo apt-get install sqlite3 | |
| rustup update stable | |
| cargo clean | |
| - name: Build and test with cargo | |
| run: | | |
| cargo test --all-features |