Skip to content

Add docs to Problem #156

Add docs to Problem

Add docs to Problem #156

Workflow file for this run

name: Tests
on:
workflow_dispatch:
pull_request:
push:
branches: [master]
jobs:
octave:
strategy:
matrix:
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install Octave
run: |
sudo apt-get update
sudo apt-get install -y octave
- name: Run OTP tests
run: octave --eval "addpath(genpath('.')); runalltests"
- name: Install OTP
run: octave --eval "OTP.install"
- name: Load OTP
run: octave --eval "pkg load 'ode test problems'"