Skip to content

Introduce uv and simplify project #98

Introduce uv and simplify project

Introduce uv and simplify project #98

Workflow file for this run

name: LocalStack py-avro-schema / Run Tests
on:
push:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: |
make install-dev
- name: Linting
run: |
make lint
- name: Execute tests
run: |
make test