Skip to content

Update README.md

Update README.md #43

Workflow file for this run

name: checks
on: [push, pull_request]
jobs:
spellcheck:
name: Spellcheck
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install codespell
run: |
pip install codespell
- name: Spellcheck
run: |
codespell --config tests/codespell.cfg
clang-format:
name: Code formatting
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Run clang-format style check
uses: jidicula/[email protected]
with:
clang-format-version: '17'