[Feature] Allow using multiple nodes to caculate on DSP hardware #7214
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: Pyabacus Build and Test | |
| on: | |
| pull_request: | |
| jobs: | |
| test: | |
| name: PyTest | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/deepmodeling/abacus-gnu | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.8 | |
| - name: Build Pyabacus | |
| run: | | |
| cd python/pyabacus | |
| python -m pip install -v .[test] | |
| - name: Test Pyabacus | |
| run: | | |
| cd python/pyabacus/tests | |
| pytest -v |