Skip to content

tmp: add intentionally failing test (CI probe, revert me) #7

tmp: add intentionally failing test (CI probe, revert me)

tmp: add intentionally failing test (CI probe, revert me) #7

Workflow file for this run

name: CI
on:
push:
branches: [master, develop]
pull_request:
jobs:
octave-tests:
runs-on: ubuntu-26.04
permissions:
checks: write
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
- name: Publish test results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/test-results.xml"