Add GitHub Action setup #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests on all examples | |
on: | |
push | |
jobs: | |
build_and_test: | |
runs-on: macos-14 | |
steps: | |
- name: Check Xcode version | |
run: /usr/bin/xcodebuild -version | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Test | |
run: | | |
brew install xcodegen | |
brew install xcbeautify | |
cd ./04-tdd-in-the-real-world | |
make |