Test Plan for the Quantity Spin Button Example #196
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Ensure that the "build" directory is absent | |
| on: | |
| pull_request: | |
| jobs: | |
| ensure-build-directory-is-absent: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| ref: refs/pull/${{ github.event.pull_request.number }}/head | |
| fetch-depth: 0 | |
| - name: Verify that the "build" directory is absent | |
| run: '[ ! -d build ]' |