Skip to content

Commit

Permalink
Add GitHub Action setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Sep 20, 2024
1 parent af6f63e commit 7521e27
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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

0 comments on commit 7521e27

Please sign in to comment.