release v1.0.1 #90
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
# This workflow check the format all files in the repository | |
# * It checks that all nonempty files have a newline at the end | |
# * It checks that there are no whitespaces at the end of lines | |
# * It checks that Python files are formatted with black | |
name: Code Formatting and Pyright | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
code-formatting: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Run code formatting checks with pre-commit | |
uses: pre-commit/[email protected] | |
- name: Install Dependencies | |
run: | | |
pip install poetry | |
poetry install | |
- name: Run Pyright | |
run: | | |
poetry run pyright |