Skip to content

Update noise_processing.yml #7

Update noise_processing.yml

Update noise_processing.yml #7

Workflow file for this run

name: Python Environment
on:
# To run manually
[push,workflow_dispatch]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
- name: Install Python dependencies
run: |
python -m pip install matplotlib scipy pandas
- name: Hello World
run: |
python -c "import scipy as sp; print('Scipy version: '+sp.__version__)"
python -c "import matplotlib as mpl; print('Matplotlib version: '+mpl.__version__)"