Merge pull request #216 from ebu/add_ultraschall_to_whitelist #34
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
| name: Continuous Integration | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| awesome_bot: | |
| name: Check for issues via awesome_bot | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 3.0 | |
| bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
| - name: Install gem | |
| run: gem install awesome_bot | |
| - name: Check links | |
| run: awesome_bot README.md --skip-save-results --white-list ebu.io/opensource,github.com/ebu/dash.js,github.com/ebu/cpa-auth-provider,github.com/sony/nmos-cpp,netflixtechblog.com/,projects.blender.org/blender/blender,www.kamailio.org/,ultraschall.fm/,www.videolan.org/projects/dvblast.html | |
| # GitHub Action to automate the identification of common misspellings in text files. | |
| # https://github.com/codespell-project/actions-codespell | |
| # https://github.com/codespell-project/codespell | |
| codespell: | |
| name: Check for spelling errors | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| persist-credentials: false | |
| - uses: codespell-project/actions-codespell@master | |
| with: | |
| check_filenames: true | |
| check_hidden: true | |
| skip: "./.git" |