Skip to content

fix: remove ping text from sendPing instead of binary payload from websocket #202

fix: remove ping text from sendPing instead of binary payload from websocket

fix: remove ping text from sendPing instead of binary payload from websocket #202

Workflow file for this run

name: Lint/Test Conda
on: [push, pull_request]
jobs:
test:
name: (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 3
fail-fast: false
matrix:
os: ["ubuntu-20.04", "windows-latest"]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10"]
steps:
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Conda info
shell: bash -l {0}
run: conda info
- uses: actions/checkout@v2
with:
submodules: true
- name: Install OpenSSL (Windows)
if: matrix.os == "windows-latest"

Check failure on line 29 in .github/workflows/test-conda.yml

View workflow run for this annotation

GitHub Actions / Lint/Test Conda

Invalid workflow file

The workflow is not valid. .github/workflows/test-conda.yml (Line: 29, Col: 13): Unexpected symbol: '"windows-latest"'. Located at position 14 within expression: matrix.os == "windows-latest"
run: |
choco install openssl
- name: Install dependencies
shell: bash -l {0}
run: |
conda install pip
pip install --upgrade setuptools
pip install -r dev_requirements.txt
pip install -e .
- name: Lint with flake8
shell: bash -l {0}
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --show-source --statistics
- name: Test with pytest
shell: bash -l {0}
run: |
py.test --cov=./