Skip to content

[FIX] work on all OS #95

[FIX] work on all OS

[FIX] work on all OS #95

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
- develop
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
python-version:
- 3.8
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run:
tox -e py