Skip to content

Update main.yml

Update main.yml #3

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.9'
- name: Install dependencies
run: pip install fake-useragent aiohttp scapy
- name: Run script
run: |
sudo python3 NetStrike.py
env:
PYTHONUNBUFFERED: 1