We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8a880 commit b20e182Copy full SHA for b20e182
.github/workflows/CI.yml
@@ -23,15 +23,22 @@ jobs:
23
with:
24
fetch-depth: 0
25
26
- - name: Set up Python 3.12
+ - name: Set up Python 3.13
27
uses: actions/setup-python@v4
28
29
- python-version: 3.12
+ python-version: 3.13
30
31
- - name: Check build and install
+ - name: Install dependencies
32
+ run: |
33
+ python -m pip install --upgrade pip
34
+ pip install build
35
+
36
+ - name: Build package
37
38
+ python3 -m build
39
40
+ - name: Install package
41
run: |
- pip install setuptools
- python3 setup.py sdist
42
pip install dist/*.tar.gz
43
44
- run: docker pull bitcraze/builder
0 commit comments