Updating octave test #55
Workflow file for this run
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: Octave Build | |
on: | |
pull_request: | |
paths: | |
- "**.m" | |
- ".github/workflows/build-test-octave.yaml" | |
# pinning at octave 8.3.0 due to installation issue, | |
# see https://github.com/vbr-calc/vbr/issues/74 | |
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" |