Skip to content

Issues #193 - stream redis data #117

Issues #193 - stream redis data

Issues #193 - stream redis data #117

Workflow file for this run

name: python-unit-tests
on:
pull_request:
types:
- opened
- edited
- reopened
- ready_for_review
- synchronize
jobs:
python-unit-tests:
name: Python Unit Tests
runs-on: ubuntu-20.04
steps:
- name: Clone repo
uses: actions/checkout@v3
- name: Setup SSH Keys and known_hosts
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null
ssh-add - <<< "${{ secrets.SSH_PRIVATE_KEY }}"
mkdir ~/.ssh/
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
- name: Setup git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Github Actions"
- name: Install Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dnas/requirements.txt
sudo apt-get install -y whois shellcheck
- name: Run the tox tests
working-directory: /home/runner/work/dfz_name_and_shame/dfz_name_and_shame/
env:
SSH_AUTH_SOCK: /tmp/ssh_agent.sock
run: |
tox