From fcd6b2b148d4681697a86282c8732f4784b981a9 Mon Sep 17 00:00:00 2001 From: andooown Date: Mon, 4 Sep 2023 16:24:27 +0900 Subject: [PATCH] Use xcpretty --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3de2e77..24ccdde 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: make build-library + run: make build-library | xcpretty test: name: Test @@ -24,7 +24,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Test - run: make test-library + run: make test-library | xcpretty build-example: name: Build Example app @@ -32,4 +32,4 @@ jobs: steps: - uses: actions/checkout@v3 - name: Build - run: make build-example + run: make build-example | xcpretty