Skip to content

Unit tests and integrations tests #4

Unit tests and integrations tests

Unit tests and integrations tests #4

Workflow file for this run

---
name: Testing
on:
pull_request:
branches:
- develop
- master
jobs:
unit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set dotenv
run: cp .env.example .env
- name: Run Unit Tests
run: make unit-tests unit-tests-coverage
integration:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set dotenv
run: cp .env.example .env
- name: Run Unit Tests
run: make integration-tests