-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (48 loc) · 1.42 KB
/
testing.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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"
git config -l
ls -l ~/.ssh/
cat ~/.ssh/config
cat ~/.ssh/key*
git clone [email protected]:DFZ-Name-and-Shame/dnas_stats.git
ls -l dnas_stats/
- name: exit
run: |
false
- 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