Files
mopidy-webhooks/.gitea/workflows/ci.yml
Colin Powell 387baf64a8
All checks were successful
CI / test (push) Successful in 3m29s
Run CI on the Gitea runner image with GStreamer typelibs
2026-09-22 21:50:19 -04:00

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