Skip to content

update author list #698

update author list

update author list #698

Workflow file for this run

name: Checks
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 1 # do not run jobs in parallel to spare DCOR-dev
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@main
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version }}
- name: Setup xvfb (Linux)
if: runner.os == 'Linux'
run: |
sudo apt update
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 libglib2.0-0 libgl1-mesa-dev
sudo apt-get install '^libxcb.*-dev' libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev libxkbcommon-dev libxkbcommon-x11-dev
# start xvfb in the background
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 &
- name: Install Python dependencies
run: |
# prerequisites
python -m pip install --upgrade pip wheel
python -m pip install coverage flake8
python -m pip install -r tests/requirements.txt
# install dependencies
pip install .[GUI]
# show installed packages
pip freeze
- 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 dcoraid --version
- name: Test with pytest
# Use bash on Windows, otherwise || exit 0 does not work
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DCOR_API_KEY: ${{ secrets.DCOR_API_KEY }}
run: |
coverage run --source=dcoraid -m pytest tests
- name: Lint with flake8
run: |
flake8 --exclude _version.py .
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
- name: Create app and check if it runs (macOS)
if: runner.os == 'macOS'
working-directory: ./build-recipes
run: |
bash ./macos_build_app.sh DCOR-Aid $(python -m dcoraid --version)