-
Notifications
You must be signed in to change notification settings - Fork 15
40 lines (36 loc) · 1010 Bytes
/
nigiri-infra.yml
File metadata and controls
40 lines (36 loc) · 1010 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
30
31
32
33
34
35
36
37
38
39
40
name: Nigiri pipeline
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
integration:
name: Integration Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
python3 -m pip install --upgrade pip
- name: Install dependencies
run: |
pip3 install -e .
pip3 install ".[test]"
- name: Run Nigiri
uses: vulpemventures/nigiri-github-action@v1
with:
use_liquid: false
- name: Run integration tests
run: |
pytest tests/integration/basics.py
pytest tests/integration/spectrum_test.py
pytest tests/integration/elsock_test.py