Add Sphinx-based Reference documentation. #85
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: CI | |
# controls when action will run | |
on: | |
# triggers workflow on push events | |
push: | |
# allows workflow to be triggered manually from Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [octave] | |
# os: [macos-10.15, macos-11.0, macos-12.0, ubuntu-18.04, ubuntu-20.04, ubuntu-22.04] | |
os: [macos-latest, ubuntu-20.04, ubuntu-22.04] | |
include: | |
- platform: matlab | |
os: ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Octave (Linux) | |
if: matrix.platform == 'octave' && startsWith(matrix.os, 'ubuntu') | |
uses: MATPOWER/action-install-octave-linux@v1 | |
- name: Install Octave (macOS) | |
if: matrix.platform == 'octave' && startsWith(matrix.os, 'macos') | |
uses: MATPOWER/action-install-octave-macos@v1 | |
- name: Install MATLAB | |
if: matrix.platform == 'matlab' | |
uses: matlab-actions/setup-matlab@v2 | |
- name: Configure MATLAB | |
if: matrix.platform == 'matlab' | |
uses: MATPOWER/action-configure-matlab@v2 | |
- name: ${{ env.ML_NAME }} ${{ env.ML_VER }} Installed | |
run: $ML_CMD ver | |
- name: Install MP-Test, Set MPTEST_PATH | |
run: | | |
git clone --depth=1 https://github.com/MATPOWER/mptest.git $HOME/mptest | |
echo "MPTEST_PATH=$HOME/mptest/lib:$HOME/mptest/lib/t" >> $GITHUB_ENV | |
- name: Set MIPS_PATH | |
run: echo "MIPS_PATH=${GITHUB_WORKSPACE}/lib:${GITHUB_WORKSPACE}/lib/t:${MPTEST_PATH}" >> $GITHUB_ENV | |
- name: Test MP-Test | |
run: env $ML_PATHVAR=$MPTEST_PATH $ML_CMD "mptestver; test_mptest(0,1)" | |
- name: Test MIPS | |
run: env $ML_PATHVAR=$MIPS_PATH $ML_CMD "mipsver; test_mips(0,1)" |