forked from XRPLF/xrpl-py
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (49 loc) · 1.55 KB
/
integration_test.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
50
51
52
53
54
55
56
57
58
59
name: Integration test
on:
push:
branches: [ master ]
pull_request:
workflow_dispatch:
jobs:
integration-test:
name: Integration test
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
matrix:
# we have to use 3.7.1 to get around openssl issues
python-version: ['3.7.1', '3.8', '3.9', '3.10']
services:
rippled:
image: natenichols/rippled-standalone:latest
ports:
- 5005:5005
- 6006:6006
options:
--health-cmd="wget localhost:6006 || exit 1" --health-interval=5s --health-retries=10 --health-timeout=2s
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Load cached .local
uses: actions/cache@v3
with:
path: /home/runner/.local
key: dotlocal-${{ matrix.python-version }}-${{ hashFiles('.github/workflows') }}
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org/ | python -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Python + Retrieve Poetry dependencies from cache
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Display Python version
run: |
python -c "import sys; print(sys.version)"
- name: Install poetry dependencies
run: poetry install
- name: Integration test
run: |
poetry run poe test_integration
poetry run coverage report --fail-under=70