Changed default channel settings to 32 #478
Workflow file for this run
This file contains 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: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
jobs: | |
style: | |
name: Check style | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- uses: pre-commit/[email protected] | |
test: | |
needs: style | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12'] | |
name: Run tests (Python ${{ matrix.python-version }}) | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Linux packages | |
run: | | |
sudo apt update | |
sudo apt install libxcb-icccm4 libxcb-image0 libxcb-keysyms1 \ | |
libxkbcommon-x11-0 xvfb libxcb-randr0 \ | |
libxcb-render-util0 libxcb-xinerama0 libegl1 \ | |
libxcb-shape0 libxcb-cursor0 | |
- name: Build sdist and wheel | |
run: | | |
pip install build | |
python -m build | |
- name: Install wheel | |
run: | | |
pip install pytest-qt pytest-xvfb | |
pip install "$(pwd)/$(echo dist/mnelab*.whl)[dev]" | |
- name: Run tests | |
run: pytest |