Skip to content

Update 'no_output' to 'no_reply' in received_data.py #17

Update 'no_output' to 'no_reply' in received_data.py

Update 'no_output' to 'no_reply' in received_data.py #17

name: NukeServerSocket
on:
pull_request:
push:
branches:
- 'develop'
- 'release/**'
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest]
python-version: ["3.7", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
pip install --upgrade pip
pip install poetry
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run pytest