makegallerytests: keep figures hidden by default (Visible off) #17
This file contains hidden or 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 | |
| on: | |
| push: | |
| branches: [master, develop] | |
| pull_request: | |
| jobs: | |
| octave-tests: | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Octave, Xvfb and packages | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y octave octave-dev build-essential xvfb | |
| octave --no-gui --eval "pkg install -forge datatypes; pkg install -forge statistics" | |
| - name: Run plotly tests | |
| working-directory: ${{ github.workspace }}/plotly/testing | |
| env: | |
| PLOTLY_ROOT: ${{ github.workspace }}/plotly | |
| CI: true | |
| run: | | |
| xvfb-run -a octave --no-gui runplotlytests.m |