Fix return type for prefix operator++ and operator-- (#332) #723
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: Proxy-CI | |
| on: | |
| push: | |
| branches: [ main, release/** ] | |
| pull_request: | |
| branches: [ main, release/** ] | |
| workflow_dispatch: | |
| jobs: | |
| run-bvt-gcc: | |
| uses: ./.github/workflows/bvt-gcc.yml | |
| name: Run BVT with GCC | |
| run-bvt-clang: | |
| uses: ./.github/workflows/bvt-clang.yml | |
| name: Run BVT with Clang | |
| run-bvt-msvc: | |
| uses: ./.github/workflows/bvt-msvc.yml | |
| name: Run BVT with MSVC | |
| run-bvt-appleclang: | |
| uses: ./.github/workflows/bvt-appleclang.yml | |
| name: Run BVT with AppleClang | |
| run-bvt-nvhpc: | |
| uses: ./.github/workflows/bvt-nvhpc.yml | |
| name: Run BVT with NVHPC | |
| run-bvt-compatibility: | |
| uses: ./.github/workflows/bvt-compatibility.yml | |
| name: Run BVT for compatibility | |
| report: | |
| uses: ./.github/workflows/bvt-report.yml | |
| name: Generate report | |
| needs: [run-bvt-gcc, run-bvt-clang, run-bvt-msvc, run-bvt-appleclang, run-bvt-nvhpc] | |
| mkdocs: | |
| uses: ./.github/workflows/mkdocs.yml | |
| name: Build mkdocs |