mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 12:15:17 +00:00
27 lines
675 B
YAML
27 lines
675 B
YAML
name: test_install
|
|
on:
|
|
pull_request:
|
|
branches: [master]
|
|
push:
|
|
branches: [master]
|
|
jobs:
|
|
test_install:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
TERM: "linux"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
cache: 'pip'
|
|
- run: pip install --upgrade pip
|
|
- run: pwd && ls -hal
|
|
# How can we pipe in responses to `read` prompts?
|
|
#- run: echo -e "\n1\n1\n1\n" | sudo ./install.sh
|
|
- run: sudo ./install.sh 1
|
|
- run: pwd && ls -hal
|
|
- run: echo -e "1\n/home/runner/work/hackingtool/hackingtool\n" | hackingtool
|
|
- run: pwd && ls -hal
|
|
|