21 lines
360 B
YAML
21 lines
360 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: ["**"]
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/mopidy/ci:7
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install package and test dependencies
|
|
run: python -m pip install -e ".[test]"
|
|
|
|
- name: Run tests
|
|
run: python -m pytest
|