Skip to content

Merge branch 'main' of github.com:smsharma/eqnn-jax #11

Merge branch 'main' of github.com:smsharma/eqnn-jax

Merge branch 'main' of github.com:smsharma/eqnn-jax #11

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 .