File tree 1 file changed +26
-1
lines changed
1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
docker-build-check :
10
10
name : Docker Build Check
11
- runs-on : ubuntu-22 .04
11
+ runs-on : ubuntu-24 .04
12
12
permissions :
13
13
contents : write # Required for creating commit statuses
14
14
pull-requests : read
30
30
31
31
- name : Checkout code
32
32
uses : actions/checkout@v4
33
+ with :
34
+ fetch-depth : 0
35
+
36
+ - name : Set up Python
37
+ uses : actions/setup-python@v5
38
+ with :
39
+ python-version : " 3.10"
40
+ cache : " poetry"
41
+
42
+ - name : Set up Poetry
43
+ uses : Gr1N/setup-poetry@v9
44
+ with :
45
+ poetry-version : " 2.0.1"
46
+
47
+ # Build the Python package to create the wheel files needed for the Docker build
48
+ - name : Build Python Package
49
+ uses : hynek/build-and-inspect-python-package@v2
50
+ env :
51
+ POETRY_DYNAMIC_VERSIONING_BYPASS : " 0.0.0dev0"
52
+
53
+ # Copy the wheel files to the dist directory
54
+ - name : Copy wheel files to dist directory
55
+ run : |
56
+ mkdir -p dist
57
+ cp /tmp/baipp/dist/*.whl dist/
33
58
34
59
- name : Set up QEMU for multi-platform builds
35
60
uses : docker/setup-qemu-action@v3
You can’t perform that action at this time.
0 commit comments