Skip to content

Add all the rest patterns description to the README #33

Add all the rest patterns description to the README

Add all the rest patterns description to the README #33

Workflow file for this run

name: Design patterns
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install --with dev
- name: Check types, lint, and test
run: make check