Skip to content

Commit

Permalink
skip autogenerated when no test.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Aug 17, 2023
1 parent a57e73c commit c5b051c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/test-features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,10 @@ jobs:
steps:
- uses: actions/checkout@v3
- run: npm install -g @devcontainers/cli
- run: devcontainer features test -f ${{ matrix.id }}
- name: devcontainer features test -f ${{ matrix.id }}
run: |
if [[ -e test/${{ matrix.id }}/test.sh ]]; then
devcontainer features test -f ${{ matrix.id }}
else
devcontainer features test -f ${{ matrix.id }} --skip-autogenerated
fi

0 comments on commit c5b051c

Please sign in to comment.