This commit is contained in:
Charlie Bromberg 2025-07-01 00:57:41 +00:00 committed by GitHub
commit e39fc5e45a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,28 @@
name: Test Responder install
on: [push, pull_request]
jobs:
install_test:
runs-on: ${{ matrix.host }}
strategy:
fail-fast: false
matrix:
host: [ ubuntu-latest, windows-latest, macOS-latest ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Setup python-pip
run: python -m pip install --upgrade pip
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run Responder
run: python Responder.py --help