Skip to content

Replacing threading with asyncio #72

Replacing threading with asyncio

Replacing threading with asyncio #72

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-20.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: Updating apt packages
run: sudo apt update
- name: Install libpulse0
run: sudo apt install -y libpulse0
- name: Install venv and dependencies
run: ./setup.sh
# - name: pylint
# run: ./run-pylint.sh
- name: Tests
run: ./run-tests.sh