chore: bump version of Rust feature #45
This file contains 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: | |
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: Auto-Generated | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
baseImage: | |
- ubuntu:24.04 | |
- ghcr.io/georglauterbach/dev-container-base:2.1.0 | |
feature: | |
- rust | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- 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: Scenarios | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
baseImage: | |
- ubuntu:24.04 | |
- ghcr.io/georglauterbach/dev-container-base:2.1.0 | |
feature: | |
- rust | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install latest devcontainer CLI | |
run: npm install -g @devcontainers/cli | |
- name: Generating tests scenarios | |
run: devcontainer features test -f rust -i ${{ matrix.baseImage }} --skip-duplicated --skip-autogenerated . |