Skip to content

fix typo

fix typo #366

Workflow file for this run

name: test_example
on: [ push ]
jobs:
test_example:
strategy:
matrix:
os: [ "windows-latest", "ubuntu-latest" ] #, "macos-latest"]
python-version: [ "3.8", "3.9" ] #, "3.10" ]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -e '.[example]'
- name: Run example script
run: |
python3 examples/bmode_reconstruction_example.py
- name: Upload example results
uses: actions/upload-artifact@v3
with:
name: example_bmode_reconstruction_results_${{ matrix.os }}_${{ matrix.python-version }}
path: ${{ github.workspace }}/example_bmode.png