Skip to content

Information about running on sessions running Wayland #148

Information about running on sessions running Wayland

Information about running on sessions running Wayland #148

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt install make python3-dev python3-tk python3-setuptools python3-wheel python3-wxgtk4.0 -y
pip install pyautogui pynput pyinstaller
pyinstaller --icon=atbswp/img/icon.png --clean --windowed --onefile --add-data atbswp/img:img --add-data atbswp/lang:lang atbswp/atbswp.py