diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index aa3155ff5ada5..208809f0e7b72 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -39,7 +39,10 @@ jobs: cache: true - name: Check Lint - run: pixi run check-lint + run: | + DART_VERBOSE=ON \ + BUILD_TYPE=${{ matrix.build_type }} \ + pixi run check-lint - name: Test DART and dartpy run: | diff --git a/.github/workflows/ci_ubuntu.yml b/.github/workflows/ci_ubuntu.yml index a519152f47205..1e03b59247b6d 100644 --- a/.github/workflows/ci_ubuntu.yml +++ b/.github/workflows/ci_ubuntu.yml @@ -94,7 +94,10 @@ jobs: version: 1.0 - name: Check Lint - run: pixi run check-lint + run: | + DART_VERBOSE=ON \ + BUILD_TYPE=${{ matrix.build_type }} \ + pixi run check-lint - name: Test DART and dartpy run: | diff --git a/.github/workflows/ci_windows.yml b/.github/workflows/ci_windows.yml index f2874d29ddcfb..a56972e602a72 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -38,7 +38,10 @@ jobs: cache: true - name: Check Lint - run: pixi run check-lint + run: | + DART_VERBOSE=ON \ + BUILD_TYPE=${{ matrix.build_type }} \ + pixi run check-lint - name: Test DART and dartpy run: |