Skip to content

feat: add kick_survivor.py example (#6) #20

feat: add kick_survivor.py example (#6)

feat: add kick_survivor.py example (#6) #20

Workflow file for this run

name: Lint and test
on:
push:
paths:
- '**.py'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
cache: pip
cache-dependency-path: pyproject.toml
python-version-file: 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