chore(deps-dev): Bump mkdocs-material from 9.5.31 to 9.5.35 #305
Workflow file for this run
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: '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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Dependencies | |
uses: './.github/actions/deps' | |
with: | |
python-version: '3.12' | |
- 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'] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- 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@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
security: | |
name: Run Security Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Dependencies | |
uses: './.github/actions/deps' | |
with: | |
python-version: '3.12' | |
- name: Run Security Checks | |
shell: bash | |
run: poetry run poe security |