2022-10-20 13:30:44 +00:00
|
|
|
name: "Test: Coordinator"
|
2022-07-13 18:55:30 +00:00
|
|
|
|
|
|
|
on:
|
2022-07-13 20:40:58 +00:00
|
|
|
workflow_dispatch:
|
2022-09-20 17:39:49 +00:00
|
|
|
workflow_call:
|
2022-07-13 18:55:30 +00:00
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
paths: ["api", "chat", "control", "robosats"]
|
2023-10-23 22:48:38 +00:00
|
|
|
pull_request_target:
|
2022-07-13 18:55:30 +00:00
|
|
|
branches: [ "main" ]
|
|
|
|
paths: ["api", "chat", "control", "robosats"]
|
|
|
|
|
2023-10-23 22:48:38 +00:00
|
|
|
concurrency:
|
|
|
|
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
|
|
|
|
cancel-in-progress: true
|
2022-10-25 18:04:12 +00:00
|
|
|
|
2022-07-13 18:55:30 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
DEVELOPMENT: 1
|
|
|
|
strategy:
|
|
|
|
max-parallel: 4
|
|
|
|
matrix:
|
2023-11-06 23:13:23 +00:00
|
|
|
python-version: ["3.11.6", "3.12"]
|
2023-10-23 22:48:38 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
db:
|
|
|
|
image: postgres:14.2
|
|
|
|
env:
|
|
|
|
POSTGRES_DB: postgres
|
|
|
|
POSTGRES_USER: postgres
|
|
|
|
POSTGRES_PASSWORD: example
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
2022-07-13 18:55:30 +00:00
|
|
|
|
|
|
|
steps:
|
2022-07-13 20:40:58 +00:00
|
|
|
- name: 'Checkout'
|
2023-09-11 16:00:32 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-10-23 22:48:38 +00:00
|
|
|
|
2022-07-13 18:55:30 +00:00
|
|
|
- name: 'Set up Python ${{ matrix.python-version }}'
|
2023-05-02 23:58:27 +00:00
|
|
|
uses: actions/setup-python@v4
|
2022-07-13 18:55:30 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2023-10-23 22:48:38 +00:00
|
|
|
|
|
|
|
- name: 'Cache pip dependencies'
|
2023-10-26 14:22:52 +00:00
|
|
|
uses: actions/cache@v3
|
2023-10-23 22:48:38 +00:00
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
|
|
|
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-pip-
|
|
|
|
|
2022-07-13 18:55:30 +00:00
|
|
|
- name: 'Install Python Dependencies'
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
|
|
|
pip install -r requirements.txt
|
2023-10-23 22:48:38 +00:00
|
|
|
|
|
|
|
- name: 'Install LND/CLN gRPC Dependencies'
|
2023-05-29 18:22:41 +00:00
|
|
|
run: bash ./scripts/generate_grpc.sh
|
2023-10-23 22:48:38 +00:00
|
|
|
|
2022-07-13 18:55:30 +00:00
|
|
|
- name: 'Create .env File'
|
|
|
|
run: |
|
|
|
|
mv .env-sample .env
|
2023-11-06 23:13:23 +00:00
|
|
|
sed -i "s/USE_TOR='True'/USE_TOR='False'/" .env
|
2023-10-23 22:48:38 +00:00
|
|
|
|
|
|
|
- name: 'Wait for PostgreSQL to become ready'
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y postgresql-client
|
|
|
|
until pg_isready -h localhost -p 5432 -U postgres; do sleep 2; done
|
|
|
|
|
|
|
|
- name: 'Run tests with coverage'
|
2022-07-13 18:55:30 +00:00
|
|
|
run: |
|
2023-10-23 22:48:38 +00:00
|
|
|
pip install coverage
|
|
|
|
coverage run manage.py test
|
|
|
|
coverage report
|