Skip to content

Commit

Permalink
Merge pull request #118 from qiaojunfeng/fix/compatibility-aiida-2.0
Browse files Browse the repository at this point in the history
Support aiida 2.0
  • Loading branch information
qiaojunfeng authored Jul 3, 2023
2 parents b9b0e38 + 37b64d7 commit 3aed159
Show file tree
Hide file tree
Showing 60 changed files with 5,716 additions and 2,662 deletions.
27 changes: 0 additions & 27 deletions .ci/install_script.sh

This file was deleted.

174 changes: 92 additions & 82 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,101 +1,111 @@
name: Continuous Integration
on: [push, pull_request]

jobs:
docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
install-type: [docs]
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-${{ matrix.python-version }}-${{ matrix.install-type }}-${{ hashFiles('**/setup.json')
}}
restore-keys: pip-${{ matrix.python-version }}-${{ matrix.install-type }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install the python project
env:
INSTALL_TYPE: ${{ matrix.install-type }}
run: .ci/install_script.sh
- name: Build documentation
env:
READTHEDOCS: 'True'
run: SPHINXOPTS='-nW' make -C docs html
- uses: actions/upload-artifact@v2
with:
name: doc-build
path: docs/build/html
pre-commit:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8]
install-type: [dev_precommit]
python-version: ["3.11"]

steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-${{ matrix.python-version }}-${{ matrix.install-type }}-${{ hashFiles('**/setup.json')
}}
restore-keys: pip-${{ matrix.python-version }}-${{ matrix.install-type }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install the python project
env:
INSTALL_TYPE: ${{ matrix.install-type }}
run: .ci/install_script.sh
- name: Run pre-commit
run: pre-commit run --all-files || ( git status --short ; git diff ; exit 1
)
- name: Checkout code
uses: actions/checkout@v3

- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-pre-commit-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
restore-keys: pip-pre-commit-${{ matrix.python-version }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install the python project
run: pip install -e .[pre-commit,tests]

- name: Run pre-commit
run: pre-commit run --all-files || ( git status --short; git diff; exit 1 )

tests:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
install-type: [testing]
include:
- python-version: 3.8
install-type: testing_sdist
python-version: ["3.8", "3.9", "3.10", "3.11"]

services:
postgres:
image: postgres:10
image: postgres:12
ports:
- 5432:5432
- 5432:5432
rabbitmq:
image: rabbitmq:latest
ports:
- 5672:5672
- 5672:5672

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-tests-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
restore-keys: pip-tests-${{ matrix.python-version }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install the python project
run: pip install -e .[tests]

- name: Run pytest
run: pytest --cov=aiida_wannier90 --cov-report=xml --cov-config=.coveragerc
working-directory: tests

- name: Upload coverage data
run: codecov --file tests/coverage.xml

docs:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.11"]

steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: pip-${{ matrix.python-version }}-${{ matrix.install-type }}-${{ hashFiles('**/setup.json')
}}
restore-keys: pip-${{ matrix.python-version }}-${{ matrix.install-type }}
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install the python project
env:
INSTALL_TYPE: ${{ matrix.install-type }}
run: .ci/install_script.sh
- name: Run pytest
run: pytest --cov=aiida_wannier90 --cov-report=xml --cov-config=.coveragerc
working-directory: tests
- name: Upload coverage data
if: ${{ matrix.install-type == 'testing' }}
run: codecov --file tests/coverage.xml
- name: Checkout code
uses: actions/checkout@v3

- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: pip-docs-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
restore-keys: pip-docs-${{ matrix.python-version }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install the python project
run: pip install -e .[docs]

- name: Build documentation
env:
READTHEDOCS: "True"
run: SPHINXOPTS='-nW' make -C docs html

- uses: actions/upload-artifact@v3
with:
name: doc-build
path: docs/build/html
90 changes: 0 additions & 90 deletions .github/workflows_source/ci.yml

This file was deleted.

Loading

0 comments on commit 3aed159

Please sign in to comment.