Skip to content

More docstring cleanup and fixes #53

More docstring cleanup and fixes

More docstring cleanup and fixes #53

Workflow file for this run

name: Smoke
on:
workflow_dispatch:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
PYTHONIOENCODING: utf-8
PIP_DOWNLOAD_CACHE: ${{ github.workspace }}/../.pip_download_cache
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12']
steps:
- name: Set git crlf/eol
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Deps for system pkgs
run: |
sudo apt-get -qq update
sudo apt-get install -yqq python3-gi python3-gi-cairo gir1.2-gtk-3.0
sudo apt-get install -yqq libgirepository1.0-dev libappindicator3-dev
sudo apt-get install -yqq software-properties-common
sudo add-apt-repository -y -s ppa:nerdboy/embedded
sudo apt-get -qq update
sudo apt-get install -yqq timew-addons
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: |
tox
env:
PLATFORM: ${{ matrix.os }}
- name: Build dist pkgs
run: |
tox -e build,check
- name: Upload artifacts
if: matrix.python-version == 3.9 && runner.os == 'Linux'
uses: actions/upload-artifact@v4
with:
name: packages
path: dist