Skip to content
Merged

Dev #54

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,23 @@ jobs:
runs-on: ubuntu-latest

steps:

# Check out your repository
- uses: actions/checkout@v5

# Start display server (for UI tests in Linux)
- name: Start display server
run: |
Xvfb :99 &
echo "DISPLAY=:99" >> $GITHUB_ENV

# Set up MATLAB on a GitHub-hosted runner
- name: Setup MATLAB
uses: matlab-actions/setup-matlab@v2
with:
products: ${{ env.PRODUCT_LIST }}
cache: true

- name: Start display server (for UI tests in Linux)
run: |
Xvfb :99 &
echo "DISPLAY=:99" >> $GITHUB_ENV

# Run the MATLAB build tool to build and test your code
- name: Run buildtool
uses: matlab-actions/run-build@v2
Expand All @@ -72,14 +74,20 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}

# The type of runner that the job will run on
runs-on: windows-latest
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:

# Check out your repository
- uses: actions/checkout@v5

# Start display server (for UI tests in Linux)
- name: Start display server
run: |
Xvfb :99 &
echo "DISPLAY=:99" >> $GITHUB_ENV

# Set up MATLAB on a GitHub-hosted runner
- name: Setup MATLAB
uses: matlab-actions/setup-matlab@v2
Expand Down
33 changes: 18 additions & 15 deletions WorkshopGuide.m

Large diffs are not rendered by default.

Loading