Skip to content

add github workflow for tests #1

add github workflow for tests

add github workflow for tests #1

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: "pip"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install pytest numpy scipy
pytest