Update to v0.14.0 #3
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
# Copyright 2020-2024 The MathWorks, Inc. | |
name: Testing MATLAB Integration for Jupyter | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "main" | |
paths: | |
# Only run tests when there are changes to these folders | |
- "src/**" | |
- "tests/**" | |
- "setup.py" | |
jobs: | |
call-unit-tests: | |
# Run unit tests | |
uses: ./.github/workflows/run-unit-tests.yml | |
secrets: inherit | |
call-integration-tests: | |
# Run integration tests | |
uses: ./.github/workflows/run-integration-tests.yml | |
secrets: inherit | |
call-e2e-tests: | |
# Run the end-to-end tests | |
uses: ./.github/workflows/run-e2e-tests.yml | |
secrets: inherit |