Skip to content

Basic vyper installation instructions #1359

Basic vyper installation instructions

Basic vyper installation instructions #1359

Workflow file for this run

name: "spell and link check"
on: [ pull_request ]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: sudo apt-get install libenchant-2-2
- run: pip3 install -r requirements.txt
- run: make spelling
- run: |
find build/spelling -path *.spelling -type f | xargs cat > errors.txt
[[ ! $(cat errors.txt) ]] || (echo && echo "errors:" && cat errors.txt && false)