Initial CI commit

This commit is contained in:
Shutdown 2023-09-21 19:30:05 +02:00
commit cb02765ea8
No known key found for this signature in database

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.6", "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