Skip to content

Feature: Add sync.get_playback method #159

Feature: Add sync.get_playback method

Feature: Add sync.get_playback method #159

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-20.04
name: Python ${{ matrix.python }}
strategy:
matrix:
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: pip
- name: Install dependencies (pip)
run: python -m pip install -r requirements.txt -r testing-requirements.txt
- name: Test
run: make test
# vim:ts=2:sw=2:et