-
Notifications
You must be signed in to change notification settings - Fork 21
55 lines (51 loc) · 1.41 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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: "3.11"
- name: "Test: Python 3.12"
python: "3.12"
tox: "3.12"
- name: "Test: Python 3.13"
python: "3.13"
tox: "3.13"
coverage: true
- name: "Lint: pyright"
python: "3.13"
tox: "pyright"
- name: "Lint: ruff lint"
python: "3.13"
tox: "ruff-lint"
- name: "Lint: ruff format"
python: "3.13"
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 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 }}