We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d357610 commit df16ccbCopy full SHA for df16ccb
.github/workflows/ci.yml
@@ -118,3 +118,16 @@ jobs:
118
python3 -c "from urllib.request import urlretrieve; urlretrieve('${{ env.BUILDER_HOST }}/${{ env.BUILDER_SOURCE }}/${{ env.BUILDER_VERSION }}/builder.pyz', 'builder')"
119
chmod a+x builder
120
./builder build -p ${{ env.PACKAGE_NAME }} --spec=downstream
121
+
122
+ check-submodules:
123
+ runs-on: ubuntu-latest
124
+ steps:
125
+ - name: Checkout Source
126
+ uses: actions/checkout@v2
127
+ with:
128
+ submodules: true
129
+ fetch-depth: 0
130
+ - name: Check Submodules
131
+ # note: using "@main" because "@${{env.BUILDER_VERSION}}" doesn't work
132
+ # https://github.com/actions/runner/issues/480
133
+ uses: awslabs/aws-crt-builder/.github/actions/check-submodules@main
0 commit comments