forked from mperrin/poppy
-
Notifications
You must be signed in to change notification settings - Fork 2
29 lines (24 loc) · 867 Bytes
/
github-workflow.yml
File metadata and controls
29 lines (24 loc) · 867 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
25
26
27
28
29
name: integration
# This workflow is triggered on pushes to the repository. Testing!
on: [push]
jobs:
build:
# Job name is test-k2sc
name: test-grad
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
- name: python
uses: actions/setup-python@v1
with:
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
architecture: 'x64' # (x64 or x86)
- run: pip install --upgrade pytest
name: 'install jax'
- run:
python setup.py install
name: 'Install morphine & dependencies'
- run: pytest morphine/tests/*.py --junitxml=junit/test-results.xml
name: 'Run pytest'