style: prettier pre-commit hook #27
Workflow file for this run
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: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
include: | |
- { | |
os: "ubuntu-22.04", | |
python-version: "3.10", | |
cc: "gcc", | |
cxx: "g++", | |
llvm: "15", | |
gcc-version: "12", | |
} | |
- { | |
os: "ubuntu-22.04", | |
python-version: "3.11", | |
cc: "gcc", | |
cxx: "g++", | |
llvm: "15", | |
gcc-version: "12", | |
} | |
- { | |
os: "ubuntu-22.04", | |
python-version: "3.12", | |
cc: "gcc", | |
cxx: "g++", | |
llvm: "15", | |
gcc-version: "12", | |
} | |
#- {os: "ubuntu-22.04", python-version: "3.10", cc: "clang", cxx: "clang++", llvm: "15", gcc-version: "12"} | |
#- {os: "ubuntu-22.04", python-version: "3.11", cc: "clang", cxx: "clang++", llvm: "15", gcc-version: "12"} | |
runs-on: ${{ matrix.os }} | |
name: Test Python ${{ matrix.python-version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} and TRIQS | |
uses: ./.github/actions/setup-triqs | |
with: | |
python-version: ${{ matrix.python-version }} | |
cc: ${{ matrix.cc }} | |
cxx: ${{ matrix.cxx }} | |
llvm: ${{ matrix.llvm }} | |
gcc-version: ${{ matrix.gcc-version }} | |
- name: Install risb | |
run: | | |
source $TRIQS_INSTALL/share/triqs/triqsvars.sh | |
python -m pip install -e .[test,docs] | |
- name: Test risb | |
run: | | |
source $TRIQS_INSTALL/share/triqs/triqsvars.sh | |
python -m pytest | |
- name: Test docs | |
run: | | |
source $TRIQS_INSTALL/share/triqs/triqsvars.sh | |
sphinx-apidoc -o docs/api --module-first --no-toc --force --separate src/risb | |
sphinx-build -b html -n -T docs docs/_build |