Skip to content

Bump actions/download-artifact from 3 to 4 #382

Bump actions/download-artifact from 3 to 4

Bump actions/download-artifact from 3 to 4 #382

Workflow file for this run

name: Test
on:
pull_request:
paths-ignore:
- 'doc/**'
jobs:
style:
name: Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: pre-commit/action@v3.0.0
build-wheel:
needs: style
name: Build wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build wheel
run: |
pip install wheel
pip wheel -w ~/.wheelhouse .
- uses: actions/upload-artifact@v3
with:
name: mnelab-wheel
path: ~/.wheelhouse/mnelab*.whl
test:
needs: build-wheel
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
name: Run tests (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v4
with:
name: mnelab-wheel
- 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: Install Python packages
run: |
pip install $(echo mnelab*.whl)
pip install pytest pytest-qt pytest-xvfb
- name: Run tests
run: pytest