Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,15 @@ jobs:
steps:
- name: Checkout Project
uses: actions/[email protected]
with:
submodules: recursive

- name: Assert Git Submodules
run: |
ACTUAL=$(git submodule status --recursive)
EXPECTED=" bea29a84b6c55a49fef34be3e7a17498c633b6d9 project-starter (v1.2.0)"
if [ "$ACTUAL" != "$EXPECTED" ]; then
echo "actual: $ACTUAL"
echo "expected: $EXPECTED"
exit 1
fi
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "project-starter"]
path = project-starter
url = https://github.com/threeal/project-starter.git
1 change: 1 addition & 0 deletions project-starter
Submodule project-starter added at bea29a