-
Notifications
You must be signed in to change notification settings - Fork 0
118 lines (115 loc) · 2.99 KB
/
build.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
114
115
116
117
118
name: CI
on:
push:
branches:
- 'main'
pull_request:
jobs:
lint:
name: "Lint (Python ${{ matrix.python }})"
strategy:
fail-fast: false
matrix:
python:
- "3.11"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: ./install-dev
- name: Lint
run: ./lint
test:
name: "Test (${{ matrix.docker && format('{0} Docker', matrix.docker) || format('{0} host', matrix.host) }})"
strategy:
fail-fast: false
matrix:
include:
- docker: debian
- docker: ubuntu
- docker: fedora
- host: ubuntu
- host: macos
runs-on: ${{ matrix.host || 'ubuntu' }}-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: ./install-dev
- name: Test
run: ./test-script
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCKER_IMAGE: ${{ matrix.docker }}
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: coverage-data-${{ matrix.host || 'docker' }}-${{ matrix.docker || 'host' }}
path: .coverage*
include-hidden-files: true
if-no-files-found: error
coverage:
needs:
- lint
- test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: ./install-dev
- name: Download coverage
uses: actions/download-artifact@v4
with:
pattern: 'coverage-data-*'
merge-multiple: true
- name: Coverage report
run: ./coverage-report
- name: Upload coverage report
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
publish:
needs:
- test
- coverage
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: ./install-dev
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
npx \
--package semantic-release-pypi@3 \
--package semantic-release@18 \
semantic-release