Skip to content

Merge pull request #198 from abhishekmittal15/psdp-algorithms #266

Merge pull request #198 from abhishekmittal15/psdp-algorithms

Merge pull request #198 from abhishekmittal15/psdp-algorithms #266

Workflow file for this run

name: CI Tox
on:
push:
# branches: [master, tox]
pull_request:
branches: [master]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Testing with tox
run: tox