-
Notifications
You must be signed in to change notification settings - Fork 1
213 lines (175 loc) · 5.12 KB
/
packages.yml
File metadata and controls
213 lines (175 loc) · 5.12 KB
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
name: Packages CI/CD
on:
push:
branches: [main, develop]
paths:
- 'lolm/**'
- 'logic2test/**'
- 'logic2code/**'
- '.github/workflows/packages.yml'
pull_request:
branches: [main]
paths:
- 'lolm/**'
- 'logic2test/**'
- 'logic2code/**'
release:
types: [published]
jobs:
test-lolm:
name: Test lolm
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
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 dependencies
run: |
cd lolm
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: |
cd lolm
python -m ruff check lolm/ || true
- name: Test
run: |
cd lolm
python -m pytest tests/ -v || echo "No tests yet"
test-logic2test:
name: Test logic2test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
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 dependencies
run: |
cd logic2test
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: |
cd logic2test
python -m ruff check logic2test/ || true
- name: Test
run: |
cd logic2test
python -m pytest tests/ -v || echo "No tests yet"
test-logic2code:
name: Test logic2code
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
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 logic2test (dependency)
run: |
cd logic2test
pip install -e .
- name: Install dependencies
run: |
cd logic2code
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Lint
run: |
cd logic2code
python -m ruff check logic2code/ || true
- name: Test
run: |
cd logic2code
python -m pytest tests/ -v || echo "No tests yet"
publish-lolm:
name: Publish lolm
needs: test-lolm
runs-on: ubuntu-latest
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/lolm-')
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
cd lolm
python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_LOLM }}
run: |
cd lolm
python -m twine upload dist/*
publish-logic2test:
name: Publish logic2test
needs: test-logic2test
runs-on: ubuntu-latest
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/logic2test-')
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
cd logic2test
python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_LOGIC2TEST }}
run: |
cd logic2test
python -m twine upload dist/*
publish-logic2code:
name: Publish logic2code
needs: [test-logic2code, publish-logic2test]
runs-on: ubuntu-latest
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags/logic2code-')
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build package
run: |
cd logic2code
python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN_LOGIC2CODE }}
run: |
cd logic2code
python -m twine upload dist/*