Skip to content

Update LICENSE to Yale Ventures Non-Commercial License #24

Update LICENSE to Yale Ventures Non-Commercial License

Update LICENSE to Yale Ventures Non-Commercial License #24

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main, "release/*"]
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: List dependencies
run: |
python -m pip list