Skip to content

Update main from 2D_I_GUI #31

Update main from 2D_I_GUI

Update main from 2D_I_GUI #31

name: autoDeer PR tests
on:
pull_request:
branches:
- "**"
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install wheel
pip install -r requirements.txt
pip install .
- name: Test with pytest
run: |
pytest