chore: update libbash to 9.0.1
#35
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: Testing | |
| on: # yamllint disable-line rule:truthy | |
| workflow_dispatch: | |
| pull_request: | |
| paths: | |
| - src/** | |
| - test/** | |
| - .github/workflows | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - src/** | |
| - test/** | |
| - .github/workflows | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| contents: read | |
| jobs: | |
| auto-generated: | |
| name: Run Auto-Generated | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| baseImage: | |
| - ubuntu:24.04 | |
| - rust:1.90.0-slim-trixie | |
| feature: | |
| - lang-rust | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install latest devcontainer CLI | |
| run: npm install -g @devcontainers/cli | |
| - name: Generating tests against ${{ matrix.baseImage }} | |
| run: > | |
| devcontainer features test | |
| -f ${{ matrix.feature }} | |
| -i ${{ matrix.baseImage }} | |
| --skip-duplicated | |
| --skip-scenarios | |
| . | |
| scenarios: | |
| name: Run Scenarios | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| baseImage: | |
| - ubuntu:24.04 | |
| - rust:1.90.0-slim-trixie | |
| feature: | |
| - lang-rust | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Install latest devcontainer CLI | |
| run: npm install -g @devcontainers/cli | |
| - name: Generating tests scenarios | |
| run: devcontainer features test -f ${{ matrix.feature }} -i ${{ matrix.baseImage }} --skip-duplicated --skip-autogenerated . |