fix: add dependency installation to build job
Some checks failed
CI / test (push) Successful in 15s
CI / build (push) Failing after 4m54s

This commit is contained in:
2026-01-30 16:08:47 +00:00
parent a39d00d72c
commit d178e9918d

View File

@@ -41,6 +41,12 @@ jobs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: '3.11' python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
- name: Build package - name: Build package
run: | run: |