Skip to content

feat: add orders status transitions (finite state machine) #8

feat: add orders status transitions (finite state machine)

feat: add orders status transitions (finite state machine) #8

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