From cba480f55211603966b6c7f43b6e1d8e727b48fd Mon Sep 17 00:00:00 2001 From: Mark Cafaro <34887852+mcafaro@users.noreply.github.com> Date: Wed, 6 Mar 2024 12:55:48 -0500 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf8ae03..13a3707 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push: {} jobs: my-job: - runs-on: ubuntu-latest + runs-on: macos-14 steps: - name: Check out repository uses: actions/checkout@v3 @@ -12,10 +12,14 @@ jobs: uses: matlab-actions/setup-matlab@v2 with: cache: true - - name: Run tests - uses: matlab-actions/run-tests@v2 + # - name: Run tests + # uses: matlab-actions/run-tests@v2 + # with: + # startup-options: -sd subfolder + # test-results-junit: myresults.xml + # use-parallel: true + - name: Run command + uses: matlab-actions/run-command@v2 with: - startup-options: -sd subfolder - test-results-junit: myresults.xml - use-parallel: true + command: disp('hello world') - run: ls *