Skip to content

Fix GitHub Actions run by installing go-gitlint #45

Fix GitHub Actions run by installing go-gitlint

Fix GitHub Actions run by installing go-gitlint #45

Workflow file for this run

name: Check for typos
on: [push, pull_request]
jobs:
check_typos:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install typos tool
run: |
curl -L https://github.com/crate-ci/typos/releases/download/v1.3.3/typos-v1.3.3-x86_64-unknown-linux-gnu.tar.gz | tar xz
mv typos ./tools/
chmod +x ./tools/typos
- name: Check for typos
run: ./tools/typos ./CONTRIBUTING.md ./README.md
working-directory: ./