Skip to content

build: bump typer version #1

build: bump typer version

build: bump typer version #1

Workflow file for this run

name: Automated Test Process
on:
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Cache Poetry
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "poetry"
- name: Test
run: |
poetry install
poetry run pytest