remove --verbose to avoid issue with long logs

This commit is contained in:
fryorcraken 2025-10-15 12:29:52 +11:00
parent c23ed0c0c1
commit dca59c7372
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4

View File

@ -12,9 +12,9 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest] # TODO: Windows
nim-version: ['2.2.4'] # TODO: tests with more versions
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
@ -36,13 +36,13 @@ jobs:
- name: Install waku from head of PR branch
working-directory: examples/nimble
run: nimble --verbose install "waku@#${{ github.event.pull_request.head.sha }}"
run: nimble install "waku@#${{ github.event.pull_request.head.sha }}"
- name: List installed packages
working-directory: examples/nimble
run: |
nimble list --installed --ver
- name: Build example project
working-directory: examples/nimble
run: |
@ -53,4 +53,4 @@ jobs:
working-directory: examples/nimble
run: |
echo "Running example project..."
nimble --verbose run
nimble --verbose run