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 f441f85 commit f2f146b
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,20 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install Libreoffice and uno dependencies
run: |
sudo apt-get update
sudo apt-get install libreoffice libreoffice-script-provider-python python3-uno
sudo python --version
sudo python -m uno
sudo python -c "import uno"
sudo apt-get install libreoffice python3-uno
sudo python -m pip install --upgrade pip
sudo pip install pytest
sudo pip install .
sudo python -c "import uno"
sudo unogenerator_start
- name: Launch unogenerator_start
run: |
sudo unogenerator_start --instances 1
- name: Run pytest
run: |
sudo pytest

0 comments on commit f2f146b

Please sign in to comment.