SFR-2079: Integration test make command #1
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 Pull Request Checks | |
on: | |
pull_request: | |
actions: [ opened ] | |
jobs: | |
changelog: | |
name: Updates Changelog | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: dangoslen/[email protected] | |
with: | |
changeLogPath: "CHANGELOG.md" | |
skipLabel: "no-changelog" | |
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 | |
- name: Run integration tests | |
run: | | |
make integration |