Skip to content

Move explanation in examples #5

Move explanation in examples

Move explanation in examples #5

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-18.04
strategy:
matrix:
python-version: [3.7]
phonopy-version: [2.7.0, 2.14.0]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install phonopy==${{ matrix.phonopy-version }}
python -m pip install pytest>=4.6
python -m pip install pytest-cov
python -m pip install codecov coverage
- name: Test with pytest
run: |
python -mpytest -ra --cov=./ --log-level=DEBUG tests