Skip to content

Add instructions for cosmology benchmark to README #17

Add instructions for cosmology benchmark to README

Add instructions for cosmology benchmark to README #17

Workflow file for this run

name: Run Tests
on:
push:
branches: [main] # Trigger the workflow on pushes to the main branch
pull_request:
branches: [main] # Trigger the workflow on pull requests to the main branch
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10.x', '3.x']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
cd tests
pytest .