Skip to content

test: try again

test: try again #8

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- "*"
jobs:
run_tests:
name: Test ${{ matrix.os }} Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
package-dir: ./python
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest numpy scipy setuptools wheel
- name: Compile
with:
package-dir: ./python
run: python setup.py develop

Check failure on line 37 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: 37, Col: 9): Unexpected value 'run' .github/workflows/tests.yml (Line: 34, Col: 9): Required property is missing: uses
- name: Test with pytest
with:
package-dir: ./python
run: python -m pytest -v -x automated_test.py