Skip to content

Introduce ext.dota2 - Dota 2 Game Coordinator extension #917

Introduce ext.dota2 - Dota 2 Game Coordinator extension

Introduce ext.dota2 - Dota 2 Game Coordinator extension #917

Workflow file for this run

name: Run pyright.
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry && pipx install poethepoet
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "poetry"
- name: Validate pyproject.toml
run: poetry check
- name: Install dependencies
run: poetry install --with dev,docs,speedups,examples
- run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- uses: jakebailey/pyright-action@v2