-
Notifications
You must be signed in to change notification settings - Fork 4
168 lines (160 loc) · 4.76 KB
/
test_and_make_release.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
name: Test and make release
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '*.rst'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.rst'
- '*.md'
env:
POETRY_VIRTUALENVS_CREATE: true
POETRY_VIRTUALENVS_IN_PROJECT: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@v3
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v8
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Verify python version
run: poetry run python -V
- name: Install dependencies
run: poetry install
- name: Complete CI/CD setup
run: poetry run inv cicd-setup.setup-test-stage
- name: Run unit tests
run: poetry run inv test
bdd:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@v3
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v8
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Verify python version
run: poetry run python -V
- name: Install dependencies
run: poetry install
- name: Complete CI/CD setup
run: poetry run inv cicd-setup.setup-test-stage
- name: Run bdd tests
run: poetry run inv bdd
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Verify python version
run: poetry run python -V
- name: Install dependencies
run: poetry install
- name: Complete CI/CD setup
run: poetry run inv cicd-setup.setup-test-stage
- name: Run format checks
run: poetry run inv format-check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Verify python version
run: poetry run python -V
- name: Install dependencies
run: poetry install
- name: Complete CI/CD setup
run: poetry run inv cicd-setup.setup-test-stage
- name: Run lint checks
run: poetry run inv lint
# type:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install tools (Poetry)
# uses: Gr1N/setup-poetry@v8
# - name: Set up Python 3.10
# uses: actions/setup-python@v4
# with:
# python-version: '3.10'
# cache: 'poetry'
# - name: Verify python version
# run: poetry run python -V
# - name: Install dependencies
# run: poetry install
# - name: Complete CI/CD setup
# run: poetry run inv cicd-setup.setup-test-stage
# - name: Run type checks
# run: poetry run inv type
semantic_release:
needs:
- test
- bdd
- format
- lint
# - type
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- name: Use Node.js 12.x
uses: actions/setup-node@v3
with:
node-version: 12.x
- name: Install tools (Poetry)
uses: Gr1N/setup-poetry@v8
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Verify python version
run: poetry run python -V
- name: Complete CI/CD setup
run: make setup-cicd-release-stage
- name: Semantic Release
uses: cycjimmy/[email protected]
with:
semantic_version: 17.0.4
extra_plugins: |
@semantic-release/changelog@"^5.0.1"
@semantic-release/exec@"^5.0.0"
@semantic-release/git@"^9.0.0"
@semantic-release/github@"^7.0.5"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }}