Skip to content

[pre-commit.ci] pre-commit autoupdate #422

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #422

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', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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
token: ${{ secrets.CODECOV_TOKEN }}