Skip to content

updates - restructure #1

updates - restructure

updates - restructure #1

Workflow file for this run

name:CI
on:

Check failure on line 3 in .github/workflows/ci.yml

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
push:
pull_request:
jobs:
run-tests:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.11"
name: Test
runs-on: ${{matrix.os}}
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: run tests
run: pytest