Merge remote-tracking branch 'upstream/master'

# Conflicts:
#	README.md
This commit is contained in:
Kathleen Fitzpatrick
2025-04-05 09:07:05 -04:00
44 changed files with 1056 additions and 528 deletions

23
.github/workflows/spellcheck.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
# Codespell configuration is within .codespellrc
---
name: Spellcheck
on:
push:
branches: [master]
pull_request:
branches: [master]
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

View File

@@ -1,4 +1,4 @@
name: tests
name: Tests
on:
- push