mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-28 04:46:18 +02:00
FIX: improve workflow stability (#1397)
* FIX: improve workflow stability * just testing * just testing, nr. 3
This commit is contained in:
4
.github/workflows/formatting.yml
vendored
4
.github/workflows/formatting.yml
vendored
@@ -24,7 +24,9 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
poetry-version: ${{ matrix.poetry-version }}
|
poetry-version: ${{ matrix.poetry-version }}
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: poetry install
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
|
poetry install
|
||||||
- name: Check black
|
- name: Check black
|
||||||
run: make checkblack
|
run: make checkblack
|
||||||
- name: Check isort
|
- name: Check isort
|
||||||
|
1
.github/workflows/migrations.yml
vendored
1
.github/workflows/migrations.yml
vendored
@@ -36,6 +36,7 @@ jobs:
|
|||||||
poetry-version: ${{ matrix.poetry-version }}
|
poetry-version: ${{ matrix.poetry-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
sudo apt install unzip
|
sudo apt install unzip
|
||||||
- name: Run migrations
|
- name: Run migrations
|
||||||
|
1
.github/workflows/mypy.yml
vendored
1
.github/workflows/mypy.yml
vendored
@@ -21,6 +21,7 @@ jobs:
|
|||||||
poetry-version: ${{ matrix.poetry-version }}
|
poetry-version: ${{ matrix.poetry-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: poetry run mypy
|
run: poetry run mypy
|
||||||
|
3
.github/workflows/regtest.yml
vendored
3
.github/workflows/regtest.yml
vendored
@@ -29,6 +29,7 @@ jobs:
|
|||||||
sudo chmod -R a+rwx .
|
sudo chmod -R a+rwx .
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
@@ -72,6 +73,7 @@ jobs:
|
|||||||
sudo chmod -R a+rwx .
|
sudo chmod -R a+rwx .
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
@@ -116,6 +118,7 @@ jobs:
|
|||||||
sudo chmod -R a+rwx .
|
sudo chmod -R a+rwx .
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
@@ -44,6 +44,7 @@ jobs:
|
|||||||
poetry-version: ${{ matrix.poetry-version }}
|
poetry-version: ${{ matrix.poetry-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: make test
|
run: make test
|
||||||
@@ -80,6 +81,7 @@ jobs:
|
|||||||
poetry-version: ${{ matrix.poetry-version }}
|
poetry-version: ${{ matrix.poetry-version }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
|
poetry config virtualenvs.create false
|
||||||
poetry install
|
poetry install
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
env:
|
env:
|
||||||
|
Reference in New Issue
Block a user