File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1515 check :
1616 # Don't run on private repo.
1717 if : github.repository == 'Firebase/firebase-ios-sdk'
18- runs-on : macos-14
18+ runs-on : ubuntu-latest
1919 env :
2020 MINT_PATH : ${{ github.workspace }}/mint
2121 steps :
3333 restore-keys : ${{ runner.os }}-mint-
3434
3535 - name : Setup check
36- run : scripts/setup_check.sh
36+ run : |
37+ eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
38+ scripts/setup_check.sh
3739
3840 - 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
290290" ${top_dir} /scripts/check_filename_spaces.sh"
291291" ${top_dir} /scripts/check_copyright.sh"
292292" ${top_dir} /scripts/check_test_inclusion.py"
293- " ${top_dir} /scripts/check_imports.swift"
293+ swift " ${top_dir} /scripts/check_imports.swift"
294294
295295# Google C++ style
296296lint_cmd=(" ${top_dir} /scripts/check_lint.py" )
You can’t perform that action at this time.
0 commit comments