Skip to content

adding a space

adding a space #268

Workflow file for this run

name: build
on: [push, workflow_dispatch]
jobs:
build:
matrix:

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

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 8, Col: 5): Unexpected value 'matrix'
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
cd tests
pytest