Replace pointsfm.PyReadCOLMAP with pycolmap.Reconstruction (#146) #254
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: Check code formatting (Ubuntu) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [ assigned, opened, synchronize, reopened ] | |
| release: | |
| types: [ published, edited ] | |
| jobs: | |
| build: | |
| name: ${{ matrix.config.os }} formatting | |
| runs-on: ${{ matrix.config.os }} | |
| strategy: | |
| matrix: | |
| config: [ | |
| { | |
| os: ubuntu-22.04, | |
| checkCodeFormat: true, | |
| }, | |
| ] | |
| env: | |
| COMPILER_CACHE_VERSION: 1 | |
| COMPILER_CACHE_DIR: ${{ github.workspace }}/compiler-cache | |
| CCACHE_DIR: ${{ github.workspace }}/compiler-cache/ccache | |
| CCACHE_BASEDIR: ${{ github.workspace }} | |
| CTCACHE_DIR: ${{ github.workspace }}/compiler-cache/ctcache | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check code format | |
| run: | | |
| if [ "${{ matrix.config.checkCodeFormat }}" != "true" ]; then | |
| exit 0 | |
| fi | |
| set +x -euo pipefail | |
| python -m pip install ruff==0.8.6 clang-format==19.1.0 | |
| ./scripts/format/clang_format.sh | |
| ./scripts/format/python.sh | |
| git diff --name-only | |
| git diff --exit-code || (echo "Code formatting failed" && exit 1) |