Skip to content

Merge branch 'main' of https://github.com/math-econ-code/mec_pypi #173

Merge branch 'main' of https://github.com/math-econ-code/mec_pypi

Merge branch 'main' of https://github.com/math-econ-code/mec_pypi #173

Workflow file for this run

name: run tests
on: [push]
#
jobs:
build:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install --upgrade pip
pip install --upgrade build
- name: run tests
run: python setup.py test