Skip to content

Support Python 3.12, drop 3.8 #56

Support Python 3.12, drop 3.8

Support Python 3.12, drop 3.8 #56

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- 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.9", "3.10", "3.11", "3.12"]
services:
postgres:
image: postgres:12
ports:
- 5432:5432
rabbitmq:
image: rabbitmq:latest
ports:
- 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 to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
working-directory: tests
docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- 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