Skip to content

Update and rename test.yml to CI.yml #1

Update and rename test.yml to CI.yml

Update and rename test.yml to CI.yml #1

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install numpy pandas scipy typing joblib tqdm pytz matplotlib pytest
- name: Run tests
run: |
python -m unittest discover -s tests