mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
Bumps the all group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [actions/configure-pages](https://github.com/actions/configure-pages) and [actions/deploy-pages](https://github.com/actions/deploy-pages). Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) Updates `actions/configure-pages` from 3 to 4 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v3...v4) Updates `actions/deploy-pages` from 2 to 3 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/configure-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
992 B
YAML
42 lines
992 B
YAML
---
|
|
name: PyKanidm tests
|
|
|
|
"on":
|
|
push:
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
- name: Install poetry
|
|
run: pipx install poetry
|
|
- name: Set up Python 3.10
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
cache: 'poetry'
|
|
- name: Running mypy
|
|
run: |
|
|
cd pykanidm
|
|
python --version
|
|
poetry install
|
|
poetry run mypy --strict kanidm tests
|
|
- name: Running Linting
|
|
run: |
|
|
cd pykanidm
|
|
poetry install
|
|
poetry run ruff kanidm tests
|
|
- name: Running pytest
|
|
run: |
|
|
cd pykanidm
|
|
poetry install
|
|
poetry run pytest -v -m 'not network'
|