SFR-2316: Create a local backend for frontend CI #962
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: ETL Pipeline Tests (Pull Request) | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- 'api/**' | |
- 'managers/**' | |
- 'mappings/**' | |
- 'model/**' | |
- 'processes/**' | |
- 'services/**' | |
- 'tests/**' | |
- 'utils/**' | |
- 'dev-requirements.txt' | |
- 'requirements.txt' | |
- 'main.py' | |
- 'Makefile' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
${{ runner.os }}- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip wheel | |
pip install -r dev-requirements.txt | |
pip install -r requirements.txt | |
- name: Run unit tests | |
run: | | |
make unit |