Cleaning up repo with help of pyright #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pyright_check | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Pyright check | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install | |
run: pip install . | |
- name: Install pyright | |
run: pip install --upgrade pyright | |
- name: Install other | |
run: pip install pyvips | |
- name: Run pyright | |
run: pyright |