-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (22 loc) · 935 Bytes
/
samplerun.yml
File metadata and controls
24 lines (22 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: SampleRun
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Test that the samples run without crashing
run: |
python3 main.py samples/Q82339.configuration.yaml Q82339 samples/Q82339.ged
python3 main.py samples/Q9696.1.configuration.yaml Q9696 samples/Q9696.1.ged
python3 main.py samples/Q9696.2.configuration.yaml Q9696 samples/Q9696.2.ged
python3 main.py samples/Q9682.configuration.yaml Q9682 samples/Q9682.json