mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
24 lines
402 B
YAML
24 lines
402 B
YAML
|
# Codespell configuration is within pyproject.toml
|
||
|
---
|
||
|
name: Codespell
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
pull_request:
|
||
|
branches: [main]
|
||
|
|
||
|
permissions:
|
||
|
contents: read
|
||
|
|
||
|
jobs:
|
||
|
codespell:
|
||
|
name: Check for spelling errors
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
- name: Codespell
|
||
|
uses: codespell-project/actions-codespell@v2
|