Skip to content

Revert "Update dockerfile" #176

Revert "Update dockerfile"

Revert "Update dockerfile" #176

Workflow file for this run

name: Test
on: [pull_request]
jobs:
test:
strategy:
matrix:
python-version: [3.7, '3.10']
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Cache for pip
uses: actions/cache@v1
id: cache-pip
with:
path: ~/.cache/pip
key: ${{ matrix.os }}-cache-pip
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies & Test
run: |
pip install --upgrade -r requirements.txt
python setup.py install
python test.py