Skip to content

Update version and CHANGELOG.rst #114

Update version and CHANGELOG.rst

Update version and CHANGELOG.rst #114

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- name: Checkout 🚚
uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies ⚙️
run: |
python -m pip install -U pip
pip install -U -e .
- name: Test 🔧
run: |
python setup.py test