Skip to content

Commit

Permalink
Merge branch 'main' into dcat
Browse files Browse the repository at this point in the history
  • Loading branch information
mih authored Feb 13, 2024
2 parents 2fae171 + cffb198 commit d41c325
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[codespell]
# Ref: https://github.com/codespell-project/codespell#using-a-config-file
skip = .git,.codespellrc
check-hidden = true
# ignore-regex =
# ignore-words-list =
23 changes: 23 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Codespell configuration is within .codespellrc
---
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
2 changes: 1 addition & 1 deletion src/linkml/data-access-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ classes:
initialize the remote.
range: string
multivalued: true
# the next two must not be used, unless range is a class defintion
# the next two must not be used, unless range is a class definition
# and not just a type
#inlined: true
#inlined_as_list: true
1 change: 1 addition & 0 deletions src/linkml/git-provenance-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ classes:
- GitTracked
slot_usage:
gitsha:
pattern: "^[0-9a-f]{40}$"
description: >-
SHA1 identifier of the commit object.
Expand Down

0 comments on commit d41c325

Please sign in to comment.