Skip to content

Bump version to 0.1.2 #22

Bump version to 0.1.2

Bump version to 0.1.2 #22

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint_test:
name: Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade hatch
- run: hatch run black --check .
- run: hatch run cov