Skip to content

Remove link to dead example in README #19

Remove link to dead example in README

Remove link to dead example in README #19

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
run_tests:
name: Run Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
pip install -U pip
pip install -e .
- name: Run Tests
run: python tests.py