-
Notifications
You must be signed in to change notification settings - Fork 12
105 lines (96 loc) · 2.61 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: aiida-plugin-cutter
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
python-version: ['3.12']
aiida-version: ['stable']
services:
postgres:
image: postgres:10
env:
POSTGRES_DB: test_aiida
POSTGRES_PASSWORD: ''
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
rabbitmq:
image: rabbitmq:latest
ports:
- 5672:5672
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 python dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
# Change plugin_name to test we're not specific to "aiida-diff"
cookiecutter --no-input . plugin_name=${PLUGIN_NAME}
env:
PLUGIN_NAME: aiida-ck
- name: Run test suite
env:
# show timings of tests
PYTEST_ADDOPTS: "--durations=0"
PLUGIN_NAME: aiida-ck
run: |
cd ${PLUGIN_NAME}
hatch test -v
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 python dependencies
env:
PLUGIN_NAME: aiida-ck
run: |
pip install --upgrade pip
pip install -r requirements.txt
# Change plugin_name to test we're not specific to "aiida-diff"
cookiecutter --no-input . plugin_name=${PLUGIN_NAME}
- name: Build docs
env:
PLUGIN_NAME: aiida-ck
run: |
cd ${PLUGIN_NAME}
hatch run docs:build
static-code-analysis:
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 python dependencies
env:
PLUGIN_NAME: aiida-ck
run: |
pip install --upgrade pip
pip install -r requirements.txt
# Change plugin_name to test we're not specific to "aiida-diff"
cookiecutter --no-input . plugin_name=${PLUGIN_NAME}
- name: Run formatter and linter
env:
PLUGIN_NAME: aiida-ck
run: |
cd ${PLUGIN_NAME}
hatch fmt