Skip to content

Fixed issues with windows #167

Fixed issues with windows

Fixed issues with windows #167

Workflow file for this run

name: tests
on: [push]
jobs:
build:
strategy:

Check failure on line 8 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / tests

Invalid workflow file

The workflow is not valid. .github/workflows/tests.yml (Line: 8, Col: 5): Required property is missing: runs-on
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: ["ubuntu-latest", "windows-latest"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Install DynaPyt
run: |
pip install .
- name: Test with pytest
run: |
pytest