Skip to content

Updating octave test #54

Updating octave test

Updating octave test #54

name: Octave Build
on:
pull_request:
paths:
- "**.m"
- ".github/workflows/build-test-octave.yaml"
jobs:
test-on-octave:
name: Octave build
runs-on: ubuntu-latest
container:
image: gnuoctave/octave:8.3.0
steps:
- uses: actions/checkout@v4
- name: Check octave installation
run: octave --eval "disp(version)"
- name: Run tests
run: octave --eval "run_all_tests"