File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,14 +19,28 @@ jobs:
1919
2020 package_check :
2121 name : Package check
22- uses : apify/workflows/.github/workflows/python_package_check.yaml@main
23- with :
24- package_name : apify_shared
25- src_package_dir : src/apify_shared
26- dist_dir : dist
27- python_version : " 3.14"
28- smoke_code : |
29- from apify_shared.consts import WebhookEventType
22+ runs-on : ubuntu-latest
23+ steps :
24+ - name : Checkout repository
25+ uses : actions/checkout@v6
26+
27+ - name : Set up uv package manager
28+ uses : astral-sh/setup-uv@v8.1.0
29+ with :
30+ python-version : " 3.14"
31+
32+ - name : Build sdist and wheel
33+ run : uv run poe build
34+
35+ - name : Verify built package
36+ uses : apify/workflows/python-package-check@main
37+ with :
38+ package_name : apify_shared
39+ src_package_dir : src/apify_shared
40+ dist_dir : dist
41+ python_version : " 3.14"
42+ smoke_code : |
43+ from apify_shared.consts import WebhookEventType
3044
3145 tests :
3246 name : Tests
You can’t perform that action at this time.
0 commit comments