Skip to content

Commit d24f8d3

Browse files
committed
remove --verbose to avoid issue with long logs
1 parent 856f223 commit d24f8d3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test-nimble-install.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
matrix:
1313
os: [ubuntu-latest, macos-latest] # TODO: Windows
1414
nim-version: ['2.2.4'] # TODO: tests with more versions
15-
15+
1616
runs-on: ${{ matrix.os }}
17-
17+
1818
steps:
1919
- name: Checkout repository
2020
uses: actions/checkout@v4
@@ -36,13 +36,13 @@ jobs:
3636

3737
- name: Install waku from head of PR branch
3838
working-directory: examples/nimble
39-
run: nimble --verbose install "waku@#${{ github.event.pull_request.head.sha }}"
39+
run: nimble install "waku@#${{ github.event.pull_request.head.sha }}"
4040

4141
- name: List installed packages
4242
working-directory: examples/nimble
4343
run: |
4444
nimble list --installed --ver
45-
45+
4646
- name: Build example project
4747
working-directory: examples/nimble
4848
run: |
@@ -53,4 +53,4 @@ jobs:
5353
working-directory: examples/nimble
5454
run: |
5555
echo "Running example project..."
56-
nimble --verbose run
56+
nimble --verbose run

0 commit comments

Comments
 (0)