Skip to content

Commit

Permalink
cleaned up debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewnitschke-wk committed Aug 30, 2024
1 parent 3d7db95 commit d51b7ea
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/test-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,12 @@ jobs:
echo "build-runner=$(grep -q "^ build_runner:" pubspec.yaml && echo "true" || echo "false")" >> $GITHUB_OUTPUT
echo "build-test=$(grep -q "^ build_test:" pubspec.yaml && echo "true" || echo "false")" >> $GITHUB_OUTPUT
debug:
needs: pre
runs-on: ubuntu-latest
steps:
- name: Print outputs
run: |
echo "chrome-platform: ${{ needs.pre.outputs.chrome-platform }}"
echo "dart-dev: ${{ needs.pre.outputs.dart-dev }}"
echo "build-runner: ${{ needs.pre.outputs.build-runner }}"
echo "build-test: ${{ needs.pre.outputs.build-test }}"
echo "chrome-platform: ${{ steps.analyze-dart-test.outputs.chrome-platform }}"
echo "dart-dev: ${{ steps.analyze-pubspec.outputs.dart-dev }}"
echo "build-runner: ${{ steps.analyze-pubspec.outputs.build-runner }}"
echo "build-test: ${{ steps.analyze-pubspec.outputs.build-test }}"
unit:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d51b7ea

Please sign in to comment.