Skip to content

Removed redundant typer[all] dependency and its usages #530

Removed redundant typer[all] dependency and its usages

Removed redundant typer[all] dependency and its usages #530

Workflow file for this run

name: build
on:
pull_request:
types: [opened, synchronize]
merge_group:
types: [checks_requested]
env:
HATCH_VERSION: 1.7.0
jobs:
ci:
strategy:
matrix:
pyVersion: [ '3.10' ]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Install Python
uses: actions/setup-python@v4
with:
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
python-version: ${{ matrix.pyVersion }}
- name: Install hatch
run: pip install hatch==$HATCH_VERSION
- name: Verify linting
run: |
hatch run lint:verify
- name: Run unit tests
run: |
hatch run unit:test