Skip to content

read() outfn own var #11

read() outfn own var

read() outfn own var #11

Workflow file for this run

name: ci
on:
push:
paths:
- "**.py"
- ".github/workflows/ci.yml"
pull_request:
jobs:
linux:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: [ '3.11' ]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: pip install .[tests]
- run: mypy --install-types --non-interactive
- run: pytest