Merge pull request #104 from andyto1234/eispac_test #149
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: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: 3.8 | |
- python-version: 3.9 | |
- python-version: '3.10' | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
pip install -e .[test,docs] | |
- name: Test | |
run: pytest --remote-data=any | |
- name: Build docs | |
run: | | |
cd docs | |
make html | |