BUG: When reading a legacy NeighborList, the incorrect group was passed to the reader #7345
Workflow file for this run
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: windows | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| - master | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| jobs: | |
| build: | |
| env: | |
| VCPKG_BINARY_SOURCES: 'clear;nuget,GitHub,readwrite' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - windows-2022 | |
| toolset: | |
| - v143 | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| - name: Add C++ Problem Matcher | |
| uses: ammaraskar/msvc-problem-matcher@0.2.0 | |
| - name: Setup Build Environment | |
| uses: ilammy/msvc-dev-cmd@v1.12.1 | |
| with: | |
| vsversion: 2022 | |
| - name: Setup NuGet Credentials | |
| shell: bash | |
| run: | | |
| `vcpkg fetch nuget | tail -n 1` \ | |
| sources add \ | |
| -source "https://nuget.pkg.github.com/BlueQuartzSoftware/index.json" \ | |
| -storepasswordincleartext \ | |
| -name "GitHub" \ | |
| -username "BlueQuartzSoftware" \ | |
| -password "${{secrets.GITHUB_TOKEN}}" | |
| `vcpkg fetch nuget | tail -n 1` \ | |
| setapikey "${{secrets.GITHUB_TOKEN}}" \ | |
| -source "https://nuget.pkg.github.com/BlueQuartzSoftware/index.json" | |
| - name: Install Sphinx | |
| run: | | |
| pip install sphinx myst-parser sphinx-markdown-tables sphinx_rtd_theme numpy | |
| - name: Configure | |
| run: | | |
| cmake --preset ci-windows-${{matrix.toolset}} ${{github.workspace}} -T ${{matrix.toolset}} | |
| - name: Build | |
| run: | | |
| cmake --build --preset ci-windows-${{matrix.toolset}} | |
| - name: Test | |
| run: | | |
| ctest --preset ci-windows-${{matrix.toolset}} |