-
-
Notifications
You must be signed in to change notification settings - Fork 0
221 lines (203 loc) · 6.95 KB
/
Copy pathtest.yml
File metadata and controls
221 lines (203 loc) · 6.95 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
214
215
216
217
218
219
220
221
name: Test Action
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test-basic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create test project
run: |
mkdir -p test-project
cat > test-project/pyproject.toml << EOF
[project]
name = "test-project"
version = "0.1.0"
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"pytest>=7.4.0",
]
EOF
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
- name: Generate lock file
working-directory: test-project
run: |
export PATH="$HOME/.local/bin:$PATH"
uv sync
- name: Test basic usage
uses: ./
with:
pyproject-path: test-project/pyproject.toml
test-requirements:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create test project
run: |
mkdir -p test-project
cat > test-project/pyproject.toml << EOF
[project]
name = "test-project"
version = "0.1.0"
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"pytest>=7.4.0",
]
EOF
- name: Install uv
working-directory: test-project
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
- name: Generate lock and requirements files
working-directory: test-project
run: |
export PATH="$HOME/.local/bin:$PATH"
uv sync
uv pip compile pyproject.toml -o requirements.txt
- name: Test with requirements
uses: ./
with:
pyproject-path: test-project/pyproject.toml
requirements-path: test-project/requirements.txt
requirements-command: uv pip compile pyproject.toml -o requirements.txt
test-custom-requirements:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create test project
run: |
mkdir -p test-project
cat > test-project/pyproject.toml << EOF
[project]
name = "test-project"
version = "0.1.0"
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"pytest>=7.4.0",
]
EOF
- name: Install uv
working-directory: test-project
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
- name: Generate lock and platform-specific requirements
working-directory: test-project
run: |
export PATH="$HOME/.local/bin:$PATH"
uv sync
uv pip compile --python-platform=linux pyproject.toml -o requirements-linux.txt
- name: Test with custom requirements command
uses: ./
with:
pyproject-path: test-project/pyproject.toml
requirements-path: test-project/requirements-linux.txt
requirements-command: uv pip compile --python-platform=linux pyproject.toml -o requirements-linux.txt
test-requirements-failure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
- name: Run action (should fail)
id: action_step
continue-on-error: true
uses: ./
with:
pyproject-path: ./test-fixtures/requirements-out-of-sync/pyproject.toml
requirements-path: ./test-fixtures/requirements-out-of-sync/requirements.txt
requirements-command: uv sync --directory ./test-fixtures/requirements-out-of-sync
- name: Assert action failed
run: |
if [[ "${{ steps.action_step.outcome }}" == "success" ]]; then
echo "Expected action to fail, but it succeeded!"
exit 1
else
echo "Action failed as expected."
fi
test-multiple-requirements:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create test project
run: |
mkdir -p test-project
cat > test-project/pyproject.toml << EOF
[project]
name = "test-project"
version = "0.1.0"
requires-python = ">=3.9"
dependencies = [
"requests>=2.31.0",
"pytest>=7.4.0",
]
EOF
- name: Install uv
working-directory: test-project
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
- name: Print uv version
working-directory: test-project
run: |
export PATH="$HOME/.local/bin:$PATH"
uv --version
- name: Generate requirements-linux.txt
working-directory: test-project
run: |
export PATH="$HOME/.local/bin:$PATH"
uv pip compile --python-platform=linux pyproject.toml -o requirements-linux.txt
- name: Generate requirements-win.txt
working-directory: test-project
run: |
export PATH="$HOME/.local/bin:$PATH"
uv pip compile --python-platform=windows pyproject.toml -o requirements-win.txt
- name: Check Linux Requirements
uses: ./
with:
pyproject-path: test-project/pyproject.toml
requirements-command: uv pip compile --python-platform=linux pyproject.toml -o requirements-linux.txt
requirements-path: test-project/requirements-linux.txt
- name: Check Windows Requirements
uses: ./
with:
pyproject-path: test-project/pyproject.toml
requirements-command: uv pip compile --python-platform=windows pyproject.toml -o requirements-win.txt
requirements-path: test-project/requirements-win.txt
test-failure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
- name: Run action (should fail)
id: action_step
continue-on-error: true
uses: ./
with:
pyproject-path: ./test-fixtures/uv-lock-out-of-sync/pyproject.toml
requirements-path: ./test-fixtures/uv-lock-out-of-sync/requirements.txt
requirements-command: uv sync --directory ./test-fixtures/uv-lock-out-of-sync
- name: Assert action failed
run: |
if [[ "${{ steps.action_step.outcome }}" == "success" ]]; then
echo "Expected action to fail, but it succeeded!"
exit 1
else
echo "Action failed as expected."
fi