File tree Expand file tree Collapse file tree 1 file changed +6
-17
lines changed
Expand file tree Collapse file tree 1 file changed +6
-17
lines changed Original file line number Diff line number Diff line change @@ -64,26 +64,15 @@ jobs:
6464
6565 build :
6666 runs-on : ubuntu-latest
67- needs : [lint, test]
6867 steps :
6968 - uses : actions/checkout@v4
7069 - name : Set up Python
7170 uses : actions/setup-python@v5
7271 with :
7372 python-version : ${{ env.PYTHON_VERSION }}
74- - name : Install dependencies
75- run : |
76- python -m pip install --upgrade pip uv
77- uv venv .venv
78- source .venv/bin/activate
79- uv pip install -r requirements.txt
80- - name : Build package
81- run : uv build
82- - name : Upload artifacts
83- uses : actions/upload-artifact@v4
84- with :
85- name : dist
86- path : |
87- dist/*.tar.gz
88- dist/*.whl
89- retention-days : 7
73+ - name : Install uv
74+ run : python -m pip install --upgrade pip uv
75+ - name : Check build process
76+ run : uv build --sdist --wheel
77+
78+
You can’t perform that action at this time.
0 commit comments