Add docs to Problem (#129) #157
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'" |