Fuse classes for wait_on tasks and input data #207
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: | |
push: | |
# only pushes to main trigger | |
branches: [main] | |
pull_request: | |
# always triggered | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
python-version: ['3.12'] | |
aiida-version: ['stable'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install hatch | |
run: | | |
pip install --upgrade pip | |
pip install hatch | |
- name: Install Graphviz | |
run: sudo apt-get install graphviz graphviz-dev | |
- name: Install package | |
run: | | |
pip install . | |
verdi presto | |
- name: Run test suite | |
env: | |
PYTEST_ADDOPTS: "--durations=0" | |
run: | | |
hatch test --cover | |
docs: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install hatch | |
run: | | |
pip install --upgrade pip | |
pip install hatch | |
- name: Install Graphviz | |
run: sudo apt-get install graphviz graphviz-dev | |
- name: Install package | |
run: | | |
pip install . | |
verdi presto | |
- name: Build docs | |
run: hatch run docs:build | |
fmt: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install hatch | |
run: | | |
pip install --upgrade pip | |
pip install hatch | |
- name: Install Graphviz | |
run: sudo apt-get install graphviz graphviz-dev | |
- name: Install package | |
run: | | |
pip install . | |
verdi presto | |
- name: Run formatter and linter | |
run: hatch fmt --check |