Skip to content

Commit 78b91e0

Browse files
committed
Add GitHub Action setup
1 parent af6f63e commit 78b91e0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/tests.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Run tests on all examples
2+
3+
on:
4+
workflow_dispatch:
5+
push
6+
7+
jobs:
8+
build_and_test:
9+
runs-on: macos-14
10+
steps:
11+
- name: Check Xcode version
12+
run: /usr/bin/xcodebuild -version
13+
14+
- name: Checkout repository
15+
uses: actions/checkout@v3
16+
17+
- name: Test
18+
run: |
19+
cd ./04-tdd-in-the-real-world
20+
make

0 commit comments

Comments
 (0)