Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test pr hooks #13

Merged
merged 5 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test_and_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10","3.12"]
python-version: ["3.10","3.11","3.12"]
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
Expand All @@ -37,7 +37,7 @@ jobs:
run: poetry run python -m black --check --diff .

- name: pytest - run the tests
run: poetry run python -m pytest -v --cov=src/ tests/
run: poetry run python -m pytest -vv

- name: pylint - static code analysis
run: poetry run python -m pylint --rcfile .pylintrc mytardis_rocrate_builder/
Expand All @@ -47,4 +47,4 @@ jobs:

- name: mypy - static type checking
# Takes configuration from pyproject.toml
run: poetry run python -m myp
run: poetry run python -m mypy
Loading
Loading