mirror of
https://github.com/stoatchat/python-client-sdk.git
synced 2026-08-27 01:31:19 -04:00
17 lines
397 B
YAML
Executable File
17 lines
397 B
YAML
Executable File
on: [push, pull_request]
|
|
name: pyright
|
|
jobs:
|
|
pyright:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.9'
|
|
- run: pip install .[speedups,docs]
|
|
- uses: jakebailey/pyright-action@v1
|
|
with:
|
|
lib: true
|
|
python-version: 3.9
|
|
working-directory: revolt
|