Skip to content

Merge branch 'master' into copilot/fix-34 #188

Merge branch 'master' into copilot/fix-34

Merge branch 'master' into copilot/fix-34 #188

Workflow file for this run

name: CI
on:
push:
branches: [ "**" ]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8 pytest
pip install -e .
- name: Lint
run: flake8 .
- name: Test
run: pytest -rP -v --cache-clear