Skip to content

Remove annoying formatter #5

Remove annoying formatter

Remove annoying formatter #5

Workflow file for this run

---
# Run basic tests for this app on the latest aiidalab-docker image.
name: continuous-integration
on: [push, pull_request]
jobs:
pre-commit:
# Adapted from: https://github.com/CasperWA/voila-optimade-client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install .[dev]
- name: Run pre-commit
run: pre-commit run --all-files || ( git status --short ; git diff ; exit 1 )