Skip to content

More consistent forward dose calculation and new dose engine tests (#… #1276

More consistent forward dose calculation and new dose engine tests (#…

More consistent forward dose calculation and new dose engine tests (#… #1276

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
permissions:
checks: write
pull-requests: write
actions: read
contents: read
# Controls when the action will run.
on: [push, pull_request, workflow_dispatch]
jobs:
test-matlab-stable: #Matlab test Job for supported Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # Checks-out repository under $GITHUB_WORKSPACE
with:
submodules: 'true'
- name: Run Test
uses: ./.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
with:
submodules: 'true'
- uses: ./.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
with:
submodules: 'true'
- uses: ./.github/actions/test-octave
coverage-report:
name: Collect Coverage Report
needs: [test-matlab-stable]
uses: ./.github/workflows/coverage-report.yml
secrets: inherit
event_file:
name: Event File
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v4
with:
name: event-file
path: ${{ github.event_path }}