Skip to content
This repository was archived by the owner on Jan 15, 2026. It is now read-only.

Commit 7e0716d

Browse files
committed
Working to keep KT synced
1 parent 4cb16f6 commit 7e0716d

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

.github/workflows/synced.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Test
2+
3+
on:
4+
schedule:
5+
- cron: '* * */1 * *'
6+
push:
7+
branches: [master]
8+
pull_request:
9+
# Check all PR
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: [3.6, 3.7, 3.8, 3.9]
17+
18+
steps:
19+
- uses: actions/checkout@v2
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v2
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
curl https://www.dropbox.com/s/itokckbbkvxaqsk/precomputed.npz -o ./datasets/precomputed.npz
27+
python -m pip install --upgrade pip
28+
pip install nbval ase numpy matplotlib scikit-learn tqdm scipy chemiscope ipywidgets
29+
pip install git+https://github.com/cosmo-epfl/scikit-cosmo.git
30+
pip install git+https://github.com/cosmo-epfl/librascal.git
31+
- name: Run tests
32+
run: |
33+
cd notebooks
34+
py.test --nbval-lax *

0 commit comments

Comments
 (0)