Skip to content

Update ci.yaml

Update ci.yaml #6

Workflow file for this run

name: CI
on:
- push
jobs:
test:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install pytest
run: |
python -m pip install pytest
- name: Run pytest
run: |
python -m pytest