Skip to content

Commit

Permalink
Give up being smart, enum folder by name
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Sep 20, 2024
1 parent 31702f9 commit cc729c6
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,22 @@ jobs:
build_and_test:
strategy:
matrix:
folder: ["04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "17", "18", "19"]
folder:
- 04-tdd-in-the-real-world
- 05-fixtures
- 06-testing-static-swiftui-views
- 07-testing-dynamic-swiftui-views
- 08-stub
- 09-json-decoding
- 10-networking
- 11-dependency-injection-with-environment-object
- 12-spy
- 13-testing-view-presentation
- 14-fixing-bugs-and-changing-code
- 15-fake-and-dummy
- 17-appendix-b-nimble-only
- 18-appendix-b-quick-and-nimble
- 19-appendix-c-uikit
runs-on: macos-14
steps:
- name: Check Xcode version
Expand All @@ -19,12 +34,6 @@ jobs:
- name: Test examples ${{ matrix.folder }}
run: |
brew install xcodegen
echo "Will try to cd in $(find . -maxdepth 1 -type d -name './${{ matrix.folder }}*' | head -n 1)"
set -x
ls
find . -maxdepth 1 -type d -name './${{ matrix.folder }}*'
cd "$(find . -maxdepth 1 -type d -name './${{ matrix.folder }}*' | head -n 1)"
cd ./${{ matrix.folder }}
echo "Currently in $(pwd)"
echo "ls:"
ls
make

0 comments on commit cc729c6

Please sign in to comment.