New split workflows.
Test Code / test-backend (push) Successful in 6s
Test Code / test-frontend (push) Successful in 12s
Build Release / tests (release) Failing after 1s
Build Release / build-docker (backend) (release) Successful in 8s
Build Release / build-docker (frontend) (release) Successful in 9s
Test Code / test-backend (push) Successful in 6s
Test Code / test-frontend (push) Successful in 12s
Build Release / tests (release) Failing after 1s
Build Release / build-docker (backend) (release) Successful in 8s
Build Release / build-docker (frontend) (release) Successful in 9s
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
name: Test Code
|
||||
|
||||
on: [push, workflow_call, pull_request]
|
||||
|
||||
jobs:
|
||||
test-backend:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.x"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
cd backend
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
cd backend
|
||||
pip install pytest pytest-cov
|
||||
pytest
|
||||
|
||||
test-frontend:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- name: Use Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20.x"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
cd frontend
|
||||
npm ci
|
||||
- name: Test with NPM
|
||||
run: |
|
||||
cd frontend
|
||||
npm test -- run --exclude "**/*.live.test.ts"
|
||||
Reference in New Issue
Block a user