Merge pull request #206 from EmmaRenauld/Test_Gaussian #648
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
# max-parallel: 6 | |
matrix: | |
os: [ubuntu-latest] | |
python-version: [3.10.*] | |
requires: ['latest'] | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install pytest | |
pip install -r requirements_github.txt | |
pip install -e . | |
- name: Tests | |
run: | | |
pytest -v |