Feature/fix tests #252
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: 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 |