Skip to content

Fix CP2K lint issues #16

Fix CP2K lint issues

Fix CP2K lint issues #16

Workflow file for this run

name: checks
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build ruff mkdocs mkdocs-material pymdown-extensions
- name: Compile package
run: python -m compileall bff
- name: Lint package
run: ruff check bff
- name: Build package
run: python -m build
- name: Build documentation
run: mkdocs build --strict