Added CWLObjectType named union #308
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spellcheck Action | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main, 1.2.1_proposed ] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Spellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Codespell with annotations | |
uses: codespell-project/actions-codespell@v2.0 | |
with: | |
skip: EDAM.owl,foaf.rdf,underscore.js,CODE_OF_CONDUCT.md | |
ignore_words_file: .github/config/wordlist.txt | |
- uses: rojopolis/spellcheck-github-actions@0.34.0 | |
name: Spellcheck | |
# https://github.com/marketplace/actions/github-spellcheck-action | |
# To run locally, `pip install pyspelling`, followed by | |
# `pyspelling -c .github/config/spellcheck.yml`. | |
with: | |
config_path: .github/config/spellcheck.yml |