-
Notifications
You must be signed in to change notification settings - Fork 11
68 lines (55 loc) · 1.91 KB
/
develop.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
name: Nightly Build
on:
schedule:
- cron: '0 0 * * *' # Run every day at midnight
jobs:
tests:
if: github.repository == 'siesta-project/aiida_siesta_plugin' # Prevent running the builds on forks as well
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
services:
postgres:
image: postgres:10
env:
POSTGRES_DB: test_${{ matrix.backend }}
POSTGRES_PASSWORD: ''
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
rabbitmq:
image: rabbitmq:latest
ports:
- 5672:5672
steps:
- uses: actions/checkout@v2
- name: Cache python dependencies
id: cache-pip
uses: actions/cache@v1
with:
path: ~/.cache/pip
key: pip-${{ matrix.python-version }}-tests-${{ hashFiles('**/setup.json') }}
restore-keys:
pip-${{ matrix.python-version }}-tests
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
sudo apt update
sudo apt install postgresql
- name: Install python dependencies
continue-on-error: true
id: install
run: |
pip install --upgrade setuptools
pip install -e .[tests]
pip install git+https://github.com/aiidateam/aiida-core@develop
reentry scan
- name: Run pytest
continue-on-error: true
id: tests
run:
pytest -sv tests