ci(meta): merge qc workflows
This commit is contained in:
parent
f374243e7c
commit
f7da80c5e4
25
.github/workflows/check-continuity.yml
vendored
25
.github/workflows/check-continuity.yml
vendored
|
@ -1,25 +0,0 @@
|
|||
name: qc (continuity)
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
analyse:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: install devbox
|
||||
uses: jetpack-io/devbox-install-action@v0.3.0
|
||||
|
||||
- name: install dependencies
|
||||
run: devbox run poetry install
|
||||
|
||||
- name: install dependencies
|
||||
id: build
|
||||
run: devbox run poetry build
|
||||
|
||||
- name: run tests
|
||||
run: devbox run poetry run python test.py
|
|
@ -1,4 +1,4 @@
|
|||
name: qc (quality)
|
||||
name: qc
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
@ -29,3 +29,22 @@ jobs:
|
|||
|
||||
- name: analyse isort compliance
|
||||
run: devbox run poetry run "isort --check surplus.py test.py"
|
||||
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: install devbox
|
||||
uses: jetpack-io/devbox-install-action@v0.3.0
|
||||
|
||||
- name: install dependencies
|
||||
run: devbox run poetry install
|
||||
|
||||
- name: install dependencies
|
||||
id: build
|
||||
run: devbox run poetry build
|
||||
|
||||
- name: run tests
|
||||
run: devbox run poetry run python test.py
|
Loading…
Reference in a new issue