Skip to content

Commit

Permalink
ga paths
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneswilm committed Oct 24, 2024
1 parent 9e396c9 commit 827fe1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
pip install pip --upgrade
if grep version ../pyproject.toml | grep -q "dev";
if grep version pyproject.toml | grep -q "dev";
then pip install https://github.com/fiduswriter/fiduswriter/archive/develop.zip;
else pip install https://github.com/fiduswriter/fiduswriter/archive/main.zip;
fi
Expand All @@ -43,8 +43,6 @@ jobs:
sudo apt install libjpeg-dev python3-dev python3-pip gettext zlib1g-dev git nodejs build-essential
wget https://github.com/jgm/pandoc/releases/download/3.2.1/pandoc-3.2.1-1-amd64.deb -O pandoc.deb
sudo dpkg -i pandoc.deb
cd fiduswriter
mv ../ci/configuration.py ./
pip install requests[security]
pip install coverage
pip install coveralls
Expand All @@ -53,10 +51,12 @@ jobs:
pip install selenium
pip install wheel
pip install pip --upgrade
if grep version ../pyproject.toml | grep -q "dev";
if grep version pyproject.toml | grep -q "dev";
then pip install https://github.com/fiduswriter/fiduswriter/archive/develop.zip;
else pip install https://github.com/fiduswriter/fiduswriter/archive/main.zip;
fi
cd fiduswriter
mv ../ci/configuration.py ./
coverage run $(which fiduswriter) setup --no-static
- name: Run pandoc server
run: pandoc server &
Expand Down

0 comments on commit 827fe1b

Please sign in to comment.