Skip to content

Updates README.md

Updates README.md #184

Workflow file for this run

name: CI Testing
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
- uses: actions/setup-python@v1
with:
python-version: 3.9
- run: pip install poetry
- run: poetry install --with dev
- run: poetry run mypy src/
- run: poetry run pytest --cov=flask_muck