setup: bump dclab from 0.56.3 to 0.57.0 (speed) #446
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: Checks | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.10'] | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
env: | |
# Display must be available globally for linux to know where xvfb is | |
DISPLAY: :0 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup xvfb (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 | |
# start xvfb in the background | |
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 & | |
- name: install R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '3.6.3' | |
- name: Downgrade rpy2 (Windows) | |
if: runner.os == 'Windows' | |
run: | | |
# Force installation of rpy2 3.5.12 | |
# https://github.com/rpy2/rpy2/issues/1044 | |
python -m pip install rpy2==3.5.12 | |
- name: install lme4 (Windows) | |
if: runner.os == 'Windows' | |
shell: bash | |
run: | | |
R -e "install.packages('lme4', repos='http://cran.rstudio.org', type='binary')" | |
- name: Install Python dependencies | |
run: | | |
# prerequisites | |
python -m pip install --upgrade pip wheel | |
python -m pip install coverage flake8 | |
# install dependencies | |
pip install -e . | |
pip install -r tests/requirements.txt | |
# show installed packages | |
pip freeze | |
# show information for rpy2 | |
python -m rpy2.situation | |
- name: Start application and print version | |
env: | |
# Display must be available globally for linux to know where xvfb is | |
QT_DEBUG_PLUGINS: 1 | |
run: | | |
python -m shapeout2 --version | |
- name: Test with pytest | |
env: | |
# github token required for testing update.py | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
coverage run --source=shapeout2 -m pytest -x tests | |
- name: Lint with flake8 | |
run: | | |
flake8 --exclude _version.py . | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
- name: Create app and check if it runs (macOS) | |
if: runner.os == 'macOS' | |
working-directory: ./build-recipes | |
run: | | |
# Uninstall rpy2, because it does not work on frozen macOS: | |
# https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2/issues/73 | |
pip uninstall -y rpy2 | |
bash ./macos_build_app.sh ShapeOut2 $(python -m shapeout2 --version) |