increase version #25
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: Build & Test Python Package | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags-ignore: | |
| - 'v*.*.*' | |
| paths: | |
| - '**.yml' | |
| - '**.py' | |
| - '**.html' | |
| - pyproject.toml | |
| pull_request: | |
| paths: | |
| - '**.yml' | |
| - '**.py' | |
| - '**.html' | |
| - pyproject.toml | |
| jobs: | |
| code-quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.12' | |
| - name: Install Build Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build ruff pytest | |
| - name: Lint with Ruff | |
| run: ruff check . | |
| test-build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.9", "3.10", "3.11", "3.12"] | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Build Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install build ruff pytest | |
| - name: Build Package | |
| run: python -m build | |
| - name: Test CLI Command | |
| run: | | |
| pip install . | |
| testdoc --help | |
| - name: Run Unit Tests | |
| run: pytest atest/ | |