diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fc17e363..fb1b3d28 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,6 +16,8 @@ jobs: - name: Dependencies run: | bundle install + brew bundle - name: Test run: | - set -o pipefail && xcodebuild -workspace Amethyst.xcworkspace -scheme Amethyst clean test | bundle exec xcpretty + set -o pipefail && xcodebuild -workspace Amethyst.xcworkspace -scheme Amethyst clean test | xcbeautify + diff --git a/.gitignore b/.gitignore index 261dcc48..e710a697 100644 --- a/.gitignore +++ b/.gitignore @@ -22,4 +22,8 @@ crashlytics_app_key Carthage AMKeys.h fastlane/report.xml -*profraw \ No newline at end of file +*profraw + +# Homebrew +Brewfile.lock.json + diff --git a/Brewfile b/Brewfile new file mode 100644 index 00000000..bd8d28d5 --- /dev/null +++ b/Brewfile @@ -0,0 +1,5 @@ +# run 'brew bundle' to install all listed packages + +# Build tools +brew "xcbeautify" # Little beautifier tool for xcodebuild + diff --git a/Gemfile b/Gemfile index 9a7164ef..9544c345 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,4 @@ source "https://rubygems.org" gem 'fastlane' -gem 'xcpretty' + diff --git a/Gemfile.lock b/Gemfile.lock index 7a7b41ab..c89e5588 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -213,7 +213,6 @@ PLATFORMS DEPENDENCIES fastlane - xcpretty BUNDLED WITH 2.2.33