chore(deps): bump argcomplete from 3.5.1 to 3.5.3 #91
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: Validate | |
on: [push] | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install '.[dev]' | |
pip3 install . | |
- name: Sphinx build | |
run: | | |
cd docs | |
sphinx-build --version | |
make html SPHINXOPTS="-W" | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v3 | |
- uses: pre-commit/action@v3.0.1 | |
with: | |
extra_args: "-a" | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install the code linting and formatting tool Ruff | |
run: pipx install ruff | |
- name: Lint code with Ruff | |
run: ruff check --output-format=github --target-version=py39 | |
- name: Check code formatting with Ruff | |
run: ruff format --diff --target-version=py39 | |
continue-on-error: true | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip3 install '.[dev]' | |
pip3 install . | |
- name: Test with pytest | |
run: | | |
pip install pytest pytest-cov | |
pytest . --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# You can test your matrix by printing the current Python version | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
# You can test your matrix by printing the current Python version | |
- name: Test Install | |
run: | | |
pip3 install '.[dev]' | |
pip3 install . | |
tfutility --help |