chore(deps-dev): Bump mkdocstrings from 0.26.2 to 0.28.2 #458
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: 'Validation' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint-style: | |
| name: Linting and Styling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Dependencies | |
| uses: './.github/actions/deps' | |
| with: | |
| python-version: '3.13' | |
| - name: Run Styling Enforcement | |
| shell: bash | |
| run: poetry run poe check | |
| - name: Run Style Linting Enforcement | |
| shell: bash | |
| run: poetry run poe lint | |
| unit-tests: | |
| name: Run Unit Tests | |
| strategy: | |
| matrix: | |
| version: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| os: [ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Dependencies | |
| uses: './.github/actions/deps' | |
| with: | |
| python-version: '${{ matrix.version }}' | |
| - name: Run Tests | |
| shell: bash | |
| run: poetry run poe test | |
| - name: Codecov | |
| uses: codecov/codecov-action@7f8b4b4bde536c465e797be725718b88c5d95e0e # v5.1.1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| security: | |
| name: Run Security Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Source | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Setup Dependencies | |
| uses: './.github/actions/deps' | |
| with: | |
| python-version: '3.13' | |
| - name: Run Security Checks | |
| shell: bash | |
| run: poetry run poe security |