File tree 2 files changed +10
-4
lines changed 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 15
15
check :
16
16
# Don't run on private repo.
17
17
if : github.repository == 'Firebase/firebase-ios-sdk'
18
- runs-on : macos-14
18
+ runs-on : ubuntu-latest
19
19
env :
20
20
MINT_PATH : ${{ github.workspace }}/mint
21
21
steps :
33
33
restore-keys : ${{ runner.os }}-mint-
34
34
35
35
- name : Setup check
36
- run : scripts/setup_check.sh
36
+ run : |
37
+ eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
38
+ scripts/setup_check.sh
37
39
38
40
- name : Check
39
- run : scripts/check.sh --test-only
41
+ run : |
42
+ eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
43
+ # Add Homebrew clang-format to first in PATH
44
+ export PATH="/home/linuxbrew/.linuxbrew/opt/clang-format/bin:$PATH"
45
+ scripts/check.sh --test-only
Original file line number Diff line number Diff line change @@ -290,7 +290,7 @@ python --version
290
290
" ${top_dir} /scripts/check_filename_spaces.sh"
291
291
" ${top_dir} /scripts/check_copyright.sh"
292
292
" ${top_dir} /scripts/check_test_inclusion.py"
293
- " ${top_dir} /scripts/check_imports.swift"
293
+ swift " ${top_dir} /scripts/check_imports.swift"
294
294
295
295
# Google C++ style
296
296
lint_cmd=(" ${top_dir} /scripts/check_lint.py" )
You can’t perform that action at this time.
0 commit comments