-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (95 loc) · 2.89 KB
/
pipeline.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: aioslsk library
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Run flake8
run: |
poetry run flake8 src/aioslsk/
- name: Run mypy
run: |
poetry run mypy src/aioslsk/ --check-untyped-defs
tests:
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.11"
- os: macos-latest
python-version: "3.12"
- os: windows-latest
python-version: "3.10"
- os: windows-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.12"
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry Action
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-pip-wheels
uses: actions/cache@v4
with:
path: ~/.cache
key: venv-${{ runner.os }}-${{ matrix.python-version }}
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Test with pytest
run: |
poetry run pytest --junitxml=test-reports/report-${{ matrix.os }}-${{ matrix.python-version }}.xml -o junit_suite_name=suite-${{ matrix.os }}-${{ matrix.python-version }}
- uses: actions/upload-artifact@v4
if: always()
with:
name: report-${{ matrix.os }}-${{ matrix.python-version }}
path: test-reports/report-${{ matrix.os }}-${{ matrix.python-version }}.xml
publish-test-results:
needs: tests
if: always()
runs-on: ubuntu-latest
permissions:
contents: read
checks: write
issues: read
pull-requests: write
steps:
- name: Download Test Result Artifacts
uses: actions/download-artifact@v4
with:
path: test-reports
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
report_individual_runs: true
files: "test-reports/**/*.xml"
- name: Display structure of downloaded files
run: ls -R