refactor: move simple Bluesky plan magics definitions to separate file #28
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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| name: Run existing tests | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Setup Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version: 3.12 | |
| - uses: actions/checkout@v4 | |
| - name: Install sophys-common | |
| run: pip install git+https://github.com/cnpem/sophys-common.git | |
| - name: Install package | |
| run: pip install ".[all]" | |
| - name: Run pytest | |
| run: pytest -vvv |