Skip to content

Commit

Permalink
try to fix the python version
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Dec 9, 2024
1 parent 94385cf commit 176280b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip_${{ matrix.python-version }}'
cache: 'pip'
- uses: actions/setup-node@v4
with:
node-version: ${{matrix.node-version}}
- name: build frontend
run: |
cd streamlit_pdf_viewer/frontend/
npm --version
npm install
npm run build
- name: Cleanup more disk space
Expand All @@ -44,6 +45,7 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Build Python backend
run: |
python --version
pip install build
python -m build
- name: Test with pytest
Expand Down

0 comments on commit 176280b

Please sign in to comment.