-
Notifications
You must be signed in to change notification settings - Fork 762
180 lines (155 loc) · 5.21 KB
/
Copy path_checks.yaml
File metadata and controls
180 lines (155 loc) · 5.21 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
name: Checks
on:
# Runs when invoked by another workflow. For manual runs, dispatch `CI (master)` instead — that wraps this
# workflow via `uses:`, so the resulting check-run names get the `Checks /` prefix that the manual release
# workflows look for via `wait-for-checks`.
workflow_call:
inputs:
run_tests:
description: Whether to run the unit test suite.
required: false
type: boolean
default: true
permissions:
contents: read
env:
NODE_VERSION: 24
jobs:
actions_lint_check:
name: Actions lint check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Run actionlint
uses: rhysd/actionlint@v1.7.12
spell_check:
name: Spell check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Check spelling with typos
uses: crate-ci/typos@v1
lint_check:
name: Lint check
uses: apify/workflows/.github/workflows/python_lint_check.yaml@main
with:
python_versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
type_check:
name: Type check
uses: apify/workflows/.github/workflows/python_type_check.yaml@main
with:
python_versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
markdown_lint_check:
name: Markdown lint check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install pnpm and website dependencies
uses: apify/actions/pnpm-install@v1.2.0
with:
working-directory: website
- name: Lint Markdown
run: pnpm lint:md
working-directory: website
website_lint_check:
name: Website lint check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install pnpm and website dependencies
uses: apify/actions/pnpm-install@v1.2.0
with:
working-directory: website
- name: Lint website code
run: pnpm lint:code
working-directory: website
- name: Check website formatting
run: pnpm format:check
working-directory: website
image_lint_check:
name: Image lint check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
fetch-depth: 0
# Doc images must be committed as optimized `.webp`. This fails when a PR adds raster
# images in another format so they get converted via `pnpm opt:images` first.
- name: Get changed unoptimized images
id: changed-files
uses: tj-actions/changed-files@v47
with:
files: |
docs/**/*.{png,jpg,jpeg,gif,bmp,tif,tiff,avif}
website/static/**/*.{png,jpg,jpeg,gif,bmp,tif,tiff,avif}
separator: "\n"
- name: Fail on unoptimized images
if: steps.changed-files.outputs.any_changed == 'true'
env:
UNOPTIMIZED_IMAGE_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
echo "Unoptimized images detected! Convert each one to WebP, e.g.:"
echo ""
while IFS= read -r file_path; do
echo " (cd website && pnpm opt:images \"../$file_path\")"
done <<< "$UNOPTIMIZED_IMAGE_FILES"
echo ""
echo "Then reference the resulting .webp files in your Markdown."
exit 1
unit_tests:
name: Unit tests
if: inputs.run_tests
uses: apify/workflows/.github/workflows/python_unit_tests.yaml@main
secrets: inherit
with:
python_versions: '["3.10", "3.11", "3.12", "3.13", "3.14"]'
operating_systems: '["ubuntu-latest", "windows-latest", "macos-latest"]'
python_version_for_codecov: "3.14"
operating_system_for_codecov: ubuntu-latest
tests_concurrency: "8"
package_check:
name: Package check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Set up uv package manager
uses: astral-sh/setup-uv@v8.2.0
with:
python-version: "3.14"
- name: Build sdist and wheel
run: uv run poe build
- name: Verify built package
uses: apify/actions/python-package-check@v1.3.0
with:
package_name: crawlee
dist_dir: dist
python_version: "3.14"
extras: all
smoke_code: |
from crawlee.crawlers import (
HttpCrawler, BeautifulSoupCrawler, ParselCrawler,
PlaywrightCrawler, AdaptivePlaywrightCrawler,
)
from crawlee.storages import Dataset, KeyValueStore, RequestQueue
from crawlee.http_clients import HttpxHttpClient, ImpitHttpClient
from crawlee import Request
HttpCrawler()
BeautifulSoupCrawler()
ParselCrawler()
doc_check:
name: Doc check
uses: apify/workflows/.github/workflows/python_docs_check.yaml@main