Skip to content

refactor: unittest now only test the service layer #4

refactor: unittest now only test the service layer

refactor: unittest now only test the service layer #4

Workflow file for this run

name: Tests
on:
push:
branches: [main, develop, feature/*]
pull_request:
branches: [main]
jobs:
unit-test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run unit tests
run: make test-unit
integration-test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run integration tests
run: make test-integration