Skip to content

fix ci issue

fix ci issue #144

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '00 12 * * 1' # Runs every Monday at 8:00 AM EST
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check
shell: bash
run: |
python3 -m pip install --upgrade pip
pip install -e .
python3 -m unittest discover -v tests
python3 setup.py install