Skip to content

converting tests to pytest #266

converting tests to pytest

converting tests to pytest #266

Workflow file for this run

name: build
on: [push, workflow_dispatch]
jobs:
build:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
-name: Set up Python
uses: actions/setup-python@v2

Check failure on line 19 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
-name : Run tests
run: |
cd tests
pytest