-
Notifications
You must be signed in to change notification settings - Fork 35
91 lines (78 loc) · 2.24 KB
/
ci.yaml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
transmission: ["version-3.00-r8", "4.0.5"]
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
services:
transmission:
image: linuxserver/transmission:${{ matrix.transmission }}
ports:
- 8080:9091
- 6881:6881
env:
UID: "1000"
TZ: Etc/UTC
USER: admin
PASS: my-secret-password
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: pip
- run: pip install -e '.[dev]'
- name: test
run: coverage run -m pytest
env:
TR_PORT: 8080
TR_USER: admin
TR_PASSWORD: my-secret-password
- uses: codecov/codecov-action@v5
with:
flags: "${{ matrix.python }}"
token: ${{ secrets.CODECOV_TOKEN }}
test-unix-socket:
# At the time of writing ubuntu-latest is ubuntu-22.04. But we need
# an even later version because ubuntu-22.04 provides Transmission 3.0.0 but
# Unix socket support was added in Transmission 4.0.0. Use 24.04 which is
# currently in beta.
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- run: sudo apt-get install -y transmission-daemon
- run: mkdir -p $HOME/Downloads
- run: transmission-daemon --rpc-bind-address unix:/tmp/transmission.socket
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: pip
- run: pip install -e .[dev]
- run: coverage run -m pytest
env:
TR_PROTOCOL: 'http+unix'
TR_HOST: '/tmp/transmission.socket'
- uses: codecov/codecov-action@v5
with:
flags: "unix-socket"
token: ${{ secrets.CODECOV_TOKEN }}
dist-files:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: pipx run flit build
- name: Check Files
run: pipx run twine check --strict dist/*