diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-04-16 16:15:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 16:15:43 +0300 |
commit | 25002ee8f534de2281f4321980453e87495b7152 (patch) | |
tree | 55fdfaaa84e42f766a7748a6b727f362ea5359c7 | |
parent | update instances (diff) | |
download | libredirect-25002ee8f534de2281f4321980453e87495b7152.zip |
Update main.yml
-rw-r--r-- | .github/workflows/main.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d5c6ca97..85bb0ac6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +17,11 @@ jobs: uses: actions/setup-python@v2 with: python-version: '3.8' # install the python version needed + + - name: install python packages + run: | + python -m pip install --upgrade pip + pip install requests bs4 colorama - name: install-and-cache apt tools # You may pin to the exact commit or the version. @@ -25,10 +30,6 @@ jobs: with: tools: nmap - - name: install python packages - run: | - python -m pip install --upgrade pip - pip install requests bs4 colorama - name: run script run: python src/instances/get_instances.py |