Skip to content

Commit

Permalink
Enable coordinator test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Reckless-Satoshi committed Oct 23, 2023
1 parent 1b65e33 commit fec5a87
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/django-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
push:
branches: [ "main" ]
paths: ["api", "chat", "control", "robosats"]
pull_request:
pull_request_target:
branches: [ "main" ]
paths: ["api", "chat", "control", "robosats"]

# concurrency:
# group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
# cancel-in-progress: true
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true

jobs:
build:
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.11"]
python-version: ["3.11.6"] # ,"3.12"]

steps:
- name: 'Checkout'
Expand All @@ -35,11 +35,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 'Install LND gRPC Dependencies'
- name: 'Install LND/CLN gRPC Dependencies'
run: bash ./scripts/generate_grpc.sh
- name: 'Create .env File'
run: |
mv .env-sample .env
- name: 'Tests'
- name: 'Test'
run: |
python manage.py test
python3 manage.py test
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
fi
# django-test:
# uses: RoboSats/robosats/.github/workflows/django-test.yml@main
# needs: check-versions
django-test:
uses: RoboSats/robosats/.github/workflows/django-test.yml@main
needs: check-versions

frontend-build:
uses: RoboSats/robosats/.github/workflows/frontend-build.yml@main
Expand Down

0 comments on commit fec5a87

Please sign in to comment.