diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..495bf60 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,31 @@ +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.7' + + - name: Install dependencies + run: pip install fake-useragent aiohttp scapy + + - name: Run script + run: | + sudo python3 NetStrike.py + env: + PYTHONUNBUFFERED: 1