Skip to content

Commit

Permalink
fix local path identifier in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wahln committed Apr 20, 2024
1 parent e5aec7c commit 6857dc3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ jobs:
with:
path: matRad
- name: Run Test
uses: matRad/.github/actions/test-matlab
uses: ./matRad/.github/actions/test-matlab
with:
matlab-version: R2022b

test-matlab-latest: #Matlab test Job for latest Matlab release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # Checks-out repository under $GITHUB_WORKSPACE
- uses: matRad/.github/actions/test-matlab
- uses: ./matRad/.github/actions/test-matlab
with:
matlab-version: latest

test-octave-6: #Octave test Job
runs-on: ubuntu-22.04 # We use Ubuntu-22.04 because it has Octave 6.4
steps:
- uses: actions/checkout@v4 # Checks-out repository under $GITHUB_WORKSPACE
- uses: matRad/.github/actions/test-octave
- uses: ./matRad/.github/actions/test-octave

0 comments on commit 6857dc3

Please sign in to comment.