Skip to content

Bound method wrapper memo #36

Bound method wrapper memo

Bound method wrapper memo #36

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
Tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
# Issue ref: https://github.com/actions/setup-python/issues/436
# cache: "pip"
cache-dependency-path: pyproject.toml
python-version-file: pyproject.toml
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run poe test