tests: add integration test for get incoming links #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |