Skip to content

Bump version to 2.1.1 #5

Bump version to 2.1.1

Bump version to 2.1.1 #5

Workflow file for this run

name: Lint and test
on:
push:
paths:
- '**.py'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.2
- name: Set up Python
uses: actions/setup-python@v4.5.0
with:
python-version: '3.10'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install pyright
run: pip install pyright
- name: Install berconpy
run: pip install .[docs,tests,types]
- name: Run pyright
run: pyright
- name: Run tests
run: pytest