Skip to content

trivial fixes

trivial fixes #173

Workflow file for this run

name: Garden flower
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
linux_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
env:
DISPLAY: ':99.0'
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup env
run: |
sudo apt-get update
sudo apt-get -y install xvfb
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1280x720x24 -ac +extension GLX
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest flake8 kivy[base]==2.2.1 "asynckivy>=0.6<0.7" "asyncgui>=0.6<0.7"
- name: Install flower
run: python -m pip install -e .
- name: Lint with flake8
run: make style
- name: Test with pytest
run: make test