Skip to content

Add rename script (#47) #147

Add rename script (#47)

Add rename script (#47) #147

Workflow file for this run

name: Format, Lint, and Test
on:
workflow_call:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv and setup Python
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: 3.14
- name: Install dependencies
run: make install
- name: Format and lint
run: make lint
- name: Run tests
run: make test
env:
AWS_DEFAULT_REGION: us-east-1