Skip to content

build(deps): update sphinx-click requirement from ^4.4.0 to ^5.0.1 #371

build(deps): update sphinx-click requirement from ^4.4.0 to ^5.0.1

build(deps): update sphinx-click requirement from ^4.4.0 to ^5.0.1 #371

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
uses: snok/[email protected]
- name: Install dependencies
run: poetry install -E yaml -E lsp
- name: Run pytest
run: poetry run pytest --cov-report=xml --cov-report=term-missing --cov-append --cov=cp2k_input_tools tests/
- uses: codecov/[email protected]
with:
files: ./coverage.xml
fail_ci_if_error: true