update changelog #91
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: Test | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| jobs: | |
| python_tests: | |
| name: Python tests | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -el {0} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Miniconda | |
| uses: conda-incubator/setup-miniconda@624cf702706ced050d52aa9187c7215fcb1b84a0 | |
| with: | |
| environment-file: conda/env/bolt_env.yml | |
| conda-solver: libmamba | |
| - name: Run Python tests | |
| run: | | |
| python3 -m unittest discover tests/ --buffer |