Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

First commit

First commit #5

Workflow file for this run

name: Pull Request
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check for Lint
uses: chartboost/ruff-action@v1
- name: Check Formatting
uses: chartboost/ruff-action@v1
with:
args: format --check
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- id: install-dynamodb
name: Install DynamoDB
uses: ./.github/actions/install-dynamodb
- name: Pip Install
run: pip install -e .
- name: Pytest
run: pytest --dynamodb-dir=${{ steps.install-dynamodb.outputs.dynamodb-dir }}
- name: MyPy
run: mypy .
- name: Upload to Codecov.io
uses: codecov/codecov-action@v4