mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-23 00:49:59 +00:00
GitHub Action to test the install process
This commit is contained in:
parent
64a46031b9
commit
ba86818beb
1 changed files with 19 additions and 0 deletions
19
.github/workflows/test_install.yml
vendored
Normal file
19
.github/workflows/test_install.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
name: test_install
|
||||
on:
|
||||
pull_request:
|
||||
branches: [master]
|
||||
push:
|
||||
branches: [master]
|
||||
jobs:
|
||||
test_install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.x
|
||||
cache: 'pip'
|
||||
- run: pip install --upgrade pip
|
||||
- run: pwd
|
||||
- run: ls -hal
|
||||
- run: echo "1\n" | ./install.sh
|
||||
Loading…
Reference in a new issue