Skip to content

Update changelog for v0.10.0 #596

Update changelog for v0.10.0

Update changelog for v0.10.0 #596

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: |
python -m pip install --upgrade pip
pip install --upgrade wheel setuptools
pip install .
- name: Lint
run: |
pip install .[dev]
make lint
- name: Test
run: |
pip install .[dev]
make test