adds manual test button wf and specifies 3.10.0 on tests.yaml to test… #730
Workflow file for this run
This file contains hidden or 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: Check Code Style | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| - dev | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| jobs: | |
| check-code-style: | |
| name: Check Code Style | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.10" | |
| - name: Install Ruff | |
| run: | | |
| pip install -U pip setuptools wheel | |
| pip install ruff | |
| - name: Run Linter | |
| run: ruff check --config pyproject.toml --verbose | |
| - name: Run Formatter | |
| run: ruff format --config pyproject.toml --check --verbose |