Fix Failing GitHub Actions due to Grype Scan #266
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: Check for typos | |
on: [push, pull_request] | |
jobs: | |
check_typos: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Check for typos | |
run: ./tools/typos ./CONTRIBUTING.md ./README.md | |
working-directory: ./ | |