-
Notifications
You must be signed in to change notification settings - Fork 10
49 lines (43 loc) · 1.21 KB
/
notebooks_with_irdb_clone.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
name: Notebooks with IRDB git clone
on:
push:
branches:
- master
- dev_master
- dev_spectroscopy
pull_request:
branches:
- master
- dev_master
- dev_spectroscopy
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Run every night
schedule:
- cron: "0 2 * * *"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Run only on a minimal subset of the matrix, as this is ran on many
# commits.
os: [ubuntu-latest]
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Install this version of ScopeSim. Otherwise the PyPI version of
# ScopeSim will be installed when the test-requriments
# are installed, because ScopeSim is a dependency of
# ScopeSim_Templates.
pip install .
pip install .[dev,test]
- name: Run notebooks
run: ./runnotebooks.sh --checkout-irdb --delete