Implement pca patch/plane detec #515
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: gh-build | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build_ghuser_components: | |
| runs-on: windows-latest | |
| name: Build components | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: NuGet/setup-nuget@v1.0.5 | |
| - name: Install CPython and pythonnet package | |
| run: | | |
| choco install python --version=3.9.10 | |
| python -m pip install pythonnet==3.0.3 | |
| - uses: ./.github/actions/gh-action-componentizer | |
| with: | |
| source: src/gh/components | |
| target: build | |
| ## for debug only | |
| # - uses: actions/upload-artifact@v4 | |
| # with: | |
| # name: ghuser-components | |
| # path: build |