Fix LatLng::operator== to treat ±180° longitude as equal #10
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: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| gtest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgtest-dev pkg-config | |
| - name: Build tests | |
| run: make gtests | |
| - name: Run tests | |
| run: ./GTests --gtest_filter=* | |
| samples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build sample | |
| run: make sample | |
| - name: Run sample | |
| run: ./Sample |