Skip to content

Commit 6fddff4

Browse files
committed
gh-actions: use pipx to install cwltool
1 parent b18f27f commit 6fddff4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ jobs:
4343
- name: Install system packages
4444
run: |
4545
sudo apt-get -qq update
46-
sudo apt-get install graphviz python3-pip
47-
sudo pip install cwltool
46+
sudo apt-get install graphviz pipx
47+
pipx install cwltool
4848
4949
- name: Build and test with Maven
5050
run: |
@@ -53,7 +53,7 @@ jobs:
5353
- name: Coverage report
5454
run: |
5555
mvn prepare-package -DskipTests=true
56-
mvn --errors jacoco:report coveralls:report --no-transfer-progress -DrepoToken=$COVERALLS_SECRET -DpullRequest=${{ github.event.number }}
56+
mvn --errors jacoco:report coveralls:report --no-transfer-progress -DrepoToken="$COVERALLS_SECRET" -DpullRequest=${{ github.event.number }}
5757
env:
5858
CI_NAME: github
5959
COVERALLS_SECRET: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)