Update to v0.2.0, introducing support for MATLAB R2024b. #2
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: "CI - Test Features" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test-autogenerated: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
features: | |
- matlab | |
baseImage: | |
- debian:latest | |
# Update to ubuntu:latest when R2024b support for it has been released in matlab-deps | |
- ubuntu:22.04 | |
- mcr.microsoft.com/devcontainers/base:ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'" | |
run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} . | |
test-scenarios: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
features: | |
- matlab | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Generating tests for '${{ matrix.features }}' scenarios" | |
run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated --skip-duplicated . | |
test-global: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Testing global scenarios" | |
run: devcontainer features test --global-scenarios-only . |