Skip to content

Merge branch 'abinit_workflows_dfpt_shg' of github.com:VicTrqt/atomat… #5

Merge branch 'abinit_workflows_dfpt_shg' of github.com:VicTrqt/atomat…

Merge branch 'abinit_workflows_dfpt_shg' of github.com:VicTrqt/atomat… #5

Workflow file for this run

name: testing
on:
push:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: pip
cache-dependency-path: pyproject.toml
- uses: pre-commit/[email protected]
test:
services:
local_mongodb:
image: mongo:4.0
ports:
- 27017:27017
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[strict,tests,abinit]
mkdir -p ~/.abinit/pseudos
cp -r tests/test_data/abinit/pseudos/ONCVPSP-PBE-SR-PDv0.4 ~/.abinit/pseudos
- name: Test
env:
MP_API_KEY: ${{ secrets.MP_API_KEY }}
run: pytest --cov=atomate2 --cov-report=xml
- uses: codecov/codecov-action@v1
if: matrix.python-version == '3.10' && github.repository == 'materialsproject/atomate2'
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: pip
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[strict,docs]
- name: Build
run: jupyter-book build docs --path-output docs_build