25 lines
531 B
YAML
25 lines
531 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install GStreamer typelibs for Mopidy
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y gir1.2-gstreamer-1.0 gir1.2-gst-plugins-base-1.0
|
|
|
|
- name: Install package and test dependencies
|
|
run: python3 -m pip install --break-system-packages -e ".[test]"
|
|
|
|
- name: Run tests
|
|
run: python3 -m pytest
|