Skip to content

Update main.yml

Update main.yml #4

Workflow file for this run

name: Net Strike - DDoS Tool
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: pip install scapy
pip install aiohttp
pip install fake-useragent
- name: Run script
run: |
sudo python3 NetStrike.py
env:
PYTHONUNBUFFERED: 1