We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 960d7ee commit ddf0b57Copy full SHA for ddf0b57
.github/workflows/test.yml
@@ -71,10 +71,13 @@ jobs:
71
uses: actions/checkout@v4
72
- name: Install xcbeautify
73
run: |
74
- eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
75
- brew install xcbeautify
+ DEBIAN_FRONTEND=noninteractive apt-get update
+ DEBIAN_FRONTEND=noninteractive apt-get install -y xz-utils curl
76
+ curl -fsSLO 'https://github.com/tuist/xcbeautify/releases/download/1.0.1/xcbeautify-1.0.1-x86_64-unknown-linux-gnu.tar.xz'
77
+ tar -x -J -f xcbeautify-1.0.1-x86_64-unknown-linux-gnu.tar.xz
78
- name: Run tests
79
+ shell: bash
80
81
set -o pipefail && \
82
swift test --sanitize=thread --enable-code-coverage |
- xcbeautify --is-ci --quiet --renderer github-actions
83
+ ./xcbeautify --is-ci --quiet --renderer github-actions
0 commit comments