Fix widget height/size #1781
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: ci | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
name: "python ${{ matrix.python-version }}" | |
strategy: | |
matrix: | |
# If you change one of these, be sure to update: | |
# - /tox.ini:[gh-actions] | |
# - /setup.cfg:[mypy] | |
# - /libqtile/scripts/check.py mypy argument | |
# If adding new python versions, consider also updating | |
# python version in .readthedocs.yaml | |
python-version: [pypy-3.9, 3.9, '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
# Any Wayland-specific Ubuntu system dependencies should be installed from ./scripts/ubuntu_wayland_setup | |
sudo apt install --no-install-recommends \ | |
libdbus-1-dev libgirepository1.0-dev gir1.2-gtk-3.0 gir1.2-notify-0.7 gir1.2-gudev-1.0 graphviz \ | |
imagemagick libpulse-dev git xserver-xephyr xterm xvfb dbus-x11 libnotify-bin \ | |
libxcb-composite0-dev libxcb-icccm4-dev libxcb-res0-dev libxcb-render0-dev libxcb-res0-dev \ | |
libxcb-xfixes0-dev vlc volumeicon-alsa | |
sudo pip -q install meson PyGObject | |
pip -q install "tox<4" tox-gh-actions | |
bash -x ./scripts/ubuntu_wayland_setup | |
- name: Run Tests | |
run: | | |
[ "$(grep -c -P '\t' CHANGELOG)" = "0" ] | |
tox | |
- name: Upload coverage data to coveralls.io | |
# For speed purposes, we don't do coverage reporting on pypy 3.9 | |
if: ${{ matrix.python-version != 'pypy-3.9' }} | |
run: | | |
pip -q install coveralls >=3.3.0 | |
coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COVERALLS_FLAG_NAME: ${{ matrix.python-version }} | |
COVERALLS_PARALLEL: true | |
COVERALLS_SERVICE_JOB_ID: ${{ github.run_id }} | |
coverage: | |
name: Finalize Coverage | |
needs: build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |