Update use-plain-english.md #159
This file contains hidden or 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
| # SPDX-License-Identifier: CC0-1.0 | |
| # SPDX-FileCopyrightText: 2025 Standard for Public Code Authors, https://www.standardforpubliccode.org/AUTHORS; 2021-2024 The Foundation for Public Code <info@publiccode.net>, https://www.standardforpubliccode.org/AUTHORS | |
| name: Test | |
| permissions: | |
| contents: read | |
| on: | |
| - push | |
| - pull_request | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| cibuild: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: '3.1' | |
| - name: install-deps | |
| run: > | |
| sudo apt-get install -y | |
| aspell | |
| aspell-en | |
| - run: bundle install | |
| - run: VERBOSE=1 ./script/check-file-names.sh | |
| - run: ./script/test-markdown.sh | |
| - run: ./script/test-without-link-check.sh | |
| - run: ./script/find-missing-spdx.sh | |
| - run: ./script/missing-glossary-links.sh | |
| - run: ./script/check-new-links.sh | |
| - run: ./script/spell-check.sh |