Skip to content

Commit

Permalink
Trying
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio committed Mar 28, 2024
1 parent 09d64e8 commit d3cef00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@ jobs:
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install .
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install Libreoffice and uno dependencies
run: |
sudo apt-get update
sudo apt-get install python3-uno
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down

0 comments on commit d3cef00

Please sign in to comment.