Skip to content

Feature/fix tests

Feature/fix tests #252

Workflow file for this run

name: unit_tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setting up Github Actions
uses: actions/checkout@v3
- name: Setting up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Installing Dependencies
run: pip install -r requirements_for_tests.txt
- name: Building the Image
run: make build_test
- name: Running Unit Tests of the Ingest Application
run: |
make test