Playback using access token #209
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
main: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: "Test: Python 3.11" | |
python: "3.11" | |
tox: py311 | |
- name: "Test: Python 3.12" | |
python: "3.12" | |
tox: py312 | |
coverage: true | |
- name: "Lint: ruff lint" | |
python: "3.12" | |
tox: ruff-lint | |
- name: "Lint: ruff format" | |
python: "3.12" | |
tox: ruff-format | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-22.04 | |
container: ghcr.io/mopidy/ci:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fix home dir permissions to enable pip caching | |
run: chown -R root /github/home | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
- run: python -m pip install pygobject tox | |
- run: python -m tox -e ${{ matrix.tox }} | |
if: ${{ ! matrix.coverage }} | |
- run: python -m tox -e ${{ matrix.tox }} -- --cov-report=xml | |
if: ${{ matrix.coverage }} | |
- uses: codecov/codecov-action@v4 | |
if: ${{ matrix.coverage }} | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |