Skip to content

This PR adds the class 'DQ_SerialVrepRobot' #229

This PR adds the class 'DQ_SerialVrepRobot'

This PR adds the class 'DQ_SerialVrepRobot' #229

Workflow file for this run

name: MATLAB Test
on: [push, pull_request]
jobs:
build:
runs-on: ['MATLAB']
strategy:
fail-fast: false
matrix:
testbranches: ['release','master']
steps:
- uses: actions/checkout@v4
- name: Customize git
run: |
git submodule update --init --recursive
git fetch --prune --unshallow
- name: Clone the matlab-tests repository (${{ matrix.testbranches }})
run: |
git clone -b ${{ matrix.testbranches }} https://github.com/dqrobotics/matlab-tests
- name: Clone the matlab-examples repository (${{ matrix.testbranches }})
run: |
git clone -b ${{ matrix.testbranches }} https://github.com/dqrobotics/matlab-examples
- name: Set correct execution path
run: |
printf "folder=fileparts(which('startup.m'))\n
addpath(genpath(folder))" > startup.m
- name: Run matlab-tests
run: |
matlab -nodisplay -nosplash -nodesktop -r "run('run_basic_tests')"
- name: Run matlab-examples
run: |
matlab -nodisplay -nosplash -nodesktop -r "run('run_examples_test')"