Fix git clone during CI #159
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: 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-22.04 | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Setup SSH Keys and known_hosts | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.CI_ACTION_SSH_PRIV_KEY }} | |
- 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/ | |
run: | | |
tox |