-
Notifications
You must be signed in to change notification settings - Fork 23
47 lines (40 loc) · 1.16 KB
/
regression_tests_custom.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
name: Regression - Custom provider
on:
push:
branches:
- main
pull_request_target:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
regression-tests:
name: Regression tests - custom provider - CLI
strategy:
matrix:
product: [Live-Common, Live-Desktop, Custom-G, Custom-W]
currency: [BTC, ETH, LTC, BCH]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install bs4
- name: Install Xpub Scan dependencies and build it
run: |
npm i && npm run build
- name: ${{ matrix.product }} x ${{ matrix.currency }}
run: |
export XPUB_SCAN_CUSTOM_API_KEY_V2=${{ secrets.XPUB_SCAN_CUSTOM_API_KEY_V2 }}
python .github/workflows/regression_tests/check.py ${{ matrix.product }} ${{ matrix.currency }} custom
regression_tests_custom_provider:
runs-on: ubuntu-latest
needs:
- regression-tests
steps:
- name: just exit
run: exit 0